threading.Thread.name

name A string used for identification purposes only. It has no semantics. Multiple threads may be given the same name. The initial

2016-10-07 17:44:38
queue.Queue.put_nowait()

Queue.put_nowait(item) Equivalent to put(item, False).

2016-10-07 17:41:05
multiprocessing.managers.Namespace

class multiprocessing.managers.Namespace A type that can register with SyncManager. A

2016-10-07 17:37:46
subprocess.check_output()

subprocess.check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None) Run command with

2016-10-07 17:43:33
subprocess.Popen

class subprocess.Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, un

2016-10-07 17:43:35
multiprocessing.sharedctypes.copy()

multiprocessing.sharedctypes.copy(obj) Return a ctypes object allocated from shared memory which is a copy of the ctypes object

2016-10-07 17:38:03
multiprocessing.managers.BaseManager.shutdown()

shutdown() Stop the process used by the manager. This is only available if start() has been used to start the server

2016-10-07 17:37:44
threading.RLock.release()

release() Release a lock, decrementing the recursion level. If after the decrement it is zero, reset the lock to unlocked (not

2016-10-07 17:44:36
multiprocessing.AuthenticationError

exception multiprocessing.AuthenticationError Raised when there is an authentication error.

2016-10-07 17:37:33
multiprocessing.Process.exitcode

exitcode The child’s exit code. This will be None if the process has not yet terminated. A negative value -N

2016-10-07 17:37:56