concurrent.futures.Future.set_exception()

set_exception(exception) Sets the result of the work associated with the Future to the

2016-10-07 17:29:08
threading.Thread

class threading.Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) This constructor should always

2016-10-07 17:44:37
threading.Barrier

class threading.Barrier(parties, action=None, timeout=None) Create a barrier object for parties number of threads.

2016-10-07 17:44:31
multiprocessing.sharedctypes.RawValue()

multiprocessing.sharedctypes.RawValue(typecode_or_type, *args) Return a ctypes object allocated from shared memory.

2016-10-07 17:38:04
threading.Thread.isDaemon()

isDaemon() setDaemon() Old getter/setter API for daemon; use it directly as a property instead.

2016-10-07 17:44:38
threading.Barrier.abort()

abort() Put the barrier into a broken state. This causes any active or future calls to wait() to fail with the

2016-10-07 17:44:31
queue.Queue.task_done()

Queue.task_done() Indicate that a formerly enqueued task is complete. Used by queue consumer threads. For each get()

2016-10-07 17:41:06
queue.LifoQueue

class queue.LifoQueue(maxsize=0) Constructor for a LIFO queue. maxsize is an integer that sets the upperbound limit

2016-10-07 17:41:04
multiprocessing.managers.SyncManager.BoundedSemaphore()

BoundedSemaphore([value]) Create a shared

2016-10-07 17:37:47
threading.Thread.daemon

daemon A boolean value indicating whether this thread is a daemon thread (True) or not (False). This must be set before start()

2016-10-07 17:44:37