multiprocessing.managers.SyncManager.Namespace()

Namespace() Create a shared Namespace object and return a proxy for it.

2016-10-07 17:37:49
_thread.start_new_thread()

_thread.start_new_thread(function, args[, kwargs]) Start a new thread and return its identifier. The thread executes the function

2016-10-07 17:48:51
_thread.lock.locked()

lock.locked() Return the status of the lock: True if it has been acquired by some thread, False if

2016-10-07 17:48:51
concurrent.futures.Future.result()

result(timeout=None) Return the value returned by the call. If the call hasn’t yet completed then this method will wait up to

2016-10-07 17:29:08
subprocess.TimeoutExpired.timeout

timeout Timeout in seconds.

2016-10-07 17:43:39
concurrent.futures.Future.add_done_callback()

add_done_callback(fn) Attaches the callable fn to the future. fn will be called, with the future as its only

2016-10-07 17:29:07
threading.Event

class threading.Event Class implementing event objects. An event manages a flag that can be set to true with the set()

2016-10-07 17:44:34
threading.Semaphore.release()

release() Release a semaphore, incrementing the internal counter by one. When it was zero on entry and another thread is waiting

2016-10-07 17:44:37
subprocess.Popen.args

Popen.args The args argument as it was passed to Popen – a sequence of program arguments or else a single

2016-10-07 17:43:35
multiprocessing.managers.BaseProxy.

_callmethod(methodname[, args[, kwds]]) Call and return the result of a method of the proxy’s referent. If

2016-10-07 17:37:45