multiprocessing.current_process() Return the Process object corresponding to the current process.
threading.enumerate() Return a list of all Thread objects currently alive. The list includes daemonic threads,
is_alive() Return whether the thread is alive. This method returns True just before
get([timeout]) Return the result when it arrives. If timeout is not None and the result does not arrive
ready() Return whether the call has completed.
subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run command with arguments.
terminate() Terminate the process. On Unix this is done using the SIGTERM signal; on Windows TerminateProcess()
multiprocessing.freeze_support() Add support for when a program which uses multiprocessing has been frozen to produce
Currently, there is only one module in this package:
exception threading.BrokenBarrierError This exception, a subclass of
Page 12 of 29