subprocess.getstatusoutput()

subprocess.getstatusoutput(cmd) Return (status, output) of executing cmd in a shell.

2016-10-07 17:43:34
multiprocessing.pool.Pool.close()

close() Prevents any more tasks from being submitted to the pool. Once all the tasks have been completed the worker processes

2016-10-07 17:37:53
subprocess.CompletedProcess

class subprocess.CompletedProcess The return value from run(), representing a process that has finished.

2016-10-07 17:43:33
multiprocessing.sharedctypes.multiprocessing.Manager()

multiprocessing.Manager() Returns a started SyncManager object which can be used for sharing objects between processes

2016-10-07 17:38:04
multiprocessing.connection.deliver_challenge()

multiprocessing.connection.deliver_challenge(connection, authkey) Send a randomly generated message to the other end of the

2016-10-07 17:37:35
subprocess.CalledProcessError.stderr

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

2016-10-07 17:43:32
multiprocessing.SimpleQueue.get()

get() Remove and return an item from the queue.

2016-10-07 17:38:06
subprocess.STARTUPINFO.hStdError

hStdError If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard error handle for

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

recv_bytes([maxlength]) Return a complete message of byte data sent from the other end of the connection as a string. Blocks

2016-10-07 17:37:38
multiprocessing.Connection.send_bytes()

send_bytes(buffer[, offset[, size]]) Send byte data from a bytes-like object as a complete

2016-10-07 17:37:38