Queue.get_nowait() Equivalent to get(False).
set_exception(exception) Sets the result of the work associated with the Future to the
class threading.Barrier(parties, action=None, timeout=None) Create a barrier object for parties number of threads.
abort() Put the barrier into a broken state. This causes any active or future calls to wait() to fail with the
cmd Command that was used to spawn the child process.
threading.stack_size([size]) Return the thread stack size used when creating new threads. The optional size argument
wait([timeout]) Wait until the result is available or until timeout seconds pass.
empty() Return True if the queue is empty, False otherwise. Because of multithreading/multiprocessing
class multiprocessing.Queue([maxsize]) Returns a process shared queue implemented using a pipe and a few locks/semaphores. When
map(func, iterable[, chunksize]) A parallel equivalent of the
Page 21 of 29