subprocess.check_call()

subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run command with arguments.

2016-10-07 17:43:33
threading.BrokenBarrierError

exception threading.BrokenBarrierError This exception, a subclass of

2016-10-07 17:44:32
queue.Empty

exception queue.Empty Exception raised when non-blocking get() (or get_nowait()) is called on a Queue

2016-10-07 17:41:04
subprocess.TimeoutExpired.stdout

stdout Alias for output, for symmetry with stderr.

2016-10-07 17:43:39
concurrent.futures.Executor.shutdown()

shutdown(wait=True) Signal the executor that it should free any resources that it is using when the currently pending futures

2016-10-07 17:29:06
multiprocessing.get_logger()

multiprocessing.get_logger() Returns the logger used by multiprocessing. If necessary, a new one will be created

2016-10-07 17:37:41
threading.enumerate()

threading.enumerate() Return a list of all Thread objects currently alive. The list includes daemonic threads,

2016-10-07 17:44:34
threading.BoundedSemaphore

class threading.BoundedSemaphore(value=1) Class implementing bounded semaphore objects. A bounded semaphore checks to make sure

2016-10-07 17:44:32
multiprocessing.sharedctypes.synchronized()

multiprocessing.sharedctypes.synchronized(obj[, lock]) Return a process-safe wrapper object for a ctypes object which uses lock

2016-10-07 17:38:05
concurrent.futures.Future.set_result()

set_result(result) Sets the result of the work associated with the Future to result.

2016-10-07 17:29:08