Miscellanea.
|
|
|
|
|
days(td)
Returns the ceil(days in the timedelta td). |
source code
|
|
|
|
|
|
|
|
|
|
settimeout(secs)
Set the signal handler for SIGALRM to raise timeout_exception, and
call alarm(secs). |
source code
|
|
|
|
|
|
|
default_if_none(x,
d)
Returns x if it's not None, otherwise
returns d. |
source code
|
|
|
|
seq(f,
g)
Evaluate 0-ary functions f then g, returning g(). |
source code
|
|
|
|
run(cmd)
Run the given command (a list of program and argument strings) and
return the stdout as a string, raising a CalledProcessError if the
program exited with a non-zero status. |
source code
|
|
|
|
|