multiprocessing.pool.Pool.join()

join() Wait for the worker processes to exit. One must call close() or terminate() before using join()

2016-10-07 17:37:53
threading.Condition

class threading.Condition(lock=None) This class implements condition variable objects. A condition variable allows one or more

2016-10-07 17:44:32
threading.Semaphore

class threading.Semaphore(value=1) This class implements semaphore objects. A semaphore manages a counter representing the number

2016-10-07 17:44:36
concurrent.futures.Future.running()

running() Return True if the call is currently being executed and cannot be cancelled.

2016-10-07 17:29:08
multiprocessing.managers.BaseProxy

class multiprocessing.managers.BaseProxy Proxy objects are instances of subclasses of BaseProxy.

2016-10-07 17:37:45
subprocess.STARTUPINFO.dwFlags

dwFlags A bit field that determines whether certain STARTUPINFO attributes are used when the process creates a

2016-10-07 17:43:37
multiprocessing.managers.BaseManager

class multiprocessing.managers.BaseManager([address[, authkey]]) Create a BaseManager object. Once

2016-10-07 17:37:43
subprocess.CompletedProcess.returncode

returncode Exit status of the child process. Typically, an exit status of 0 indicates that it ran successfully.

2016-10-07 17:43:34
multiprocessing.RLock.release()

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

2016-10-07 17:38:02
threading.Thread.getName()

getName() setName() Old getter/setter API for name; use it directly as a property instead.

2016-10-07 17:44:38