subprocess.CalledProcessError.output

output Output of the child process if it was captured by run() or check_output(). Otherwise, None.

urllib.request.pathname2url()

urllib.request.pathname2url(path) Convert the pathname path from the local syntax for a path to the form used in the path component of a URL. This does not produce a complete URL. The return value will already be quoted using the quote() function.

concurrent.futures.TimeoutError

exception concurrent.futures.TimeoutError Raised when a future operation exceeds the given timeout.

decimal.Context.logical_and()

logical_and(x, y) Applies the logical operation and between each operand’s digits.

mailbox.mbox.unlock()

unlock() Three locking mechanisms are used—dot locking and, if available, the flock() and lockf() system calls.

asyncio.AbstractEventLoop.get_debug()

AbstractEventLoop.get_debug() Get the debug mode (bool) of the event loop. The default value is True if the environment variable PYTHONASYNCIODEBUG is set to a non-empty string, False otherwise. New in version 3.4.2.

threading.Timer

class threading.Timer(interval, function, args=None, kwargs=None) Create a timer that will run function with arguments args and keyword arguments kwargs, after interval seconds have passed. If args is None (the default) then an empty list will be used. If kwargs is None (the default) then an empty dict will be used. Changed in version 3.3: changed from a factory function to a class. cancel() Stop the timer, and cancel the execution of the timer’s action. This will only work if the timer

array.array.buffer_info()

array.buffer_info() Return a tuple (address, length) giving the current memory address and the length in elements of the buffer used to hold array’s contents. The size of the memory buffer in bytes can be computed as array.buffer_info()[1] * array.itemsize. This is occasionally useful when working with low-level (and inherently unsafe) I/O interfaces that require memory addresses, such as certain ioctl() operations. The returned numbers are valid as long as the array exists and no length-cha

http.server.CGIHTTPRequestHandler.do_POST()

do_POST() This method serves the 'POST' request type, only allowed for CGI scripts. Error 501, “Can only POST to CGI scripts”, is output when trying to POST to a non-CGI url.

tarfile.TarInfo.mtime

TarInfo.mtime Time of last modification.