queue.Queue.put()

Queue.put(item, block=True, timeout=None) Put item into the queue. If optional args block is true and timeout

2016-10-07 17:41:05
subprocess.STARTUPINFO.hStdInput

hStdInput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard input handle for

2016-10-07 17:43:38
multiprocessing.set_executable()

multiprocessing.set_executable() Sets the path of the Python interpreter to use when starting a child process. (By default

2016-10-07 17:38:03
multiprocessing.managers.SyncManager

class multiprocessing.managers.SyncManager A subclass of BaseManager which can be used for the synchronization

2016-10-07 17:37:47
subprocess.Popen.stdout

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

2016-10-07 17:43:37
subprocess.call()

subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run the command described by args

2016-10-07 17:43:31
multiprocessing.Process.terminate()

terminate() Terminate the process. On Unix this is done using the SIGTERM signal; on Windows TerminateProcess()

2016-10-07 17:37:58
multiprocessing.Connection.recv()

recv() Return an object sent from the other end of the connection using send(). Blocks until there its something

2016-10-07 17:37:37
subprocess.TimeoutExpired.stderr

stderr Stderr output of the child process if it was captured by run(). Otherwise, None.

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

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

2016-10-07 17:43:39