Queue.get(block=True, timeout=None) Remove and return an item from the queue. If optional args block is true and timeout
acquire(blocking=True, timeout=-1) Acquire a lock, blocking or non-blocking. When invoked without
wait(timeout=None) Wait until notified or until a timeout occurs. If the calling thread has not acquired the lock when this
class subprocess.CompletedProcess The return value from run(), representing a process that has finished.
multiprocessing.current_process() Return the Process object corresponding to the current process.
is_alive() Return whether the thread is alive. This method returns True just before
subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run command with arguments.
threading.enumerate() Return a list of all Thread objects currently alive. The list includes daemonic threads,
__repr__() Return a representation of the proxy object.
multiprocessing.sharedctypes.RawArray(typecode_or_type, size_or_initializer) Return a ctypes array allocated from shared memory
Page 11 of 29