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
threading.settrace()

threading.settrace(func) Set a trace function for all threads started from the threading module. The func

2016-10-07 17:44:37
multiprocessing.connection.Listener.last_accepted

last_accepted The address from which the last accepted connection came. If this is unavailable then it is None

2016-10-07 17:37:37
subprocess.run()

subprocess.run(args, *, stdin=None, input=None, stdout=None, stderr=None, shell=False, timeout=None, check=False) Run the command

2016-10-07 17:43:37
threading.Event.set()

set() Set the internal flag to true. All threads waiting for it to become true are awakened. Threads that call wait()

2016-10-07 17:44:34
multiprocessing.ProcessError

exception multiprocessing.ProcessError The base class of all multiprocessing exceptions.

2016-10-07 17:37:58
subprocess.Popen.stderr

Popen.stderr If the stderr argument was PIPE, this attribute is a readable stream object as returned by

2016-10-07 17:43:36
multiprocessing.pool.Pool.starmap_async()

starmap_async(func, iterable[, chunksize[, callback[, error_back]]]) A combination of starmap() and map_async()

2016-10-07 17:37:54
subprocess.TimeoutExpired.cmd

cmd Command that was used to spawn the child process.

2016-10-07 17:43:39
subprocess.CalledProcessError.output

output Output of the child process if it was captured by run() or check_output(). Otherwise, None

2016-10-07 17:43:32