concurrent.futures.ThreadPoolExecutor

class concurrent.futures.ThreadPoolExecutor(max_workers=None) An Executor subclass that uses a pool of at most

2016-10-07 17:29:09
queue.Full

exception queue.Full Exception raised when non-blocking put() (or put_nowait()) is called on a Queue

2016-10-07 17:41:04
threading.get_ident()

threading.get_ident() Return the ‘thread identifier’ of the current thread. This is a nonzero integer. Its value has no direct

2016-10-07 17:44:35
threading.RLock

class threading.RLock This class implements reentrant lock objects. A reentrant lock must be released by the thread that acquired

2016-10-07 17:44:36
threading.Condition.acquire()

acquire(*args) Acquire the underlying lock. This method calls the corresponding method on the underlying lock; the return value

2016-10-07 17:44:32
multiprocessing.Queue.get_nowait()

get_nowait() Equivalent to get(False).

2016-10-07 17:38:00
multiprocessing.Queue.cancel_join_thread()

cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from

2016-10-07 17:37:59
multiprocessing.Process.daemon

daemon The process’s daemon flag, a Boolean value. This must be set before start() is called. The

2016-10-07 17:37:55
threading.Lock.release()

release() Release a lock. This can be called from any thread, not only the thread which has acquired the lock.

2016-10-07 17:44:35
threading.Timer.cancel()

cancel() Stop the timer, and cancel the execution of the timer’s action. This will only work if the timer is still in its waiting

2016-10-07 17:44:40