multiprocessing.managers.BaseProxy.

_getvalue() Return a copy of the referent. If the referent is unpicklable then this will raise

2016-10-07 17:37:46
multiprocessing.managers.SyncManager.Queue()

Queue([maxsize]) Create a shared

2016-10-07 17:37:49
multiprocessing.Queue.put()

put(obj[, block[, timeout]]) Put obj into the queue. If the optional argument block is True (the default)

2016-10-07 17:38:01
threading.Thread.setName()

setName() Old getter/setter API for name; use it directly as a property instead.

2016-10-07 17:44:39
subprocess.Popen.stdin

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

2016-10-07 17:43:36
multiprocessing.TimeoutError

exception multiprocessing.TimeoutError Raised by methods with a timeout when the timeout expires.

2016-10-07 17:38:06
multiprocessing.Process

class multiprocessing.Process(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) Process objects represent

2016-10-07 17:37:55
multiprocessing.pool.Pool.map_async()

map_async(func, iterable[, chunksize[, callback[, error_callback]]]) A variant of the map() method which returns

2016-10-07 17:37:54
concurrent.futures.Executor

class concurrent.futures.Executor An abstract class that provides methods to execute calls asynchronously. It should not be

2016-10-07 17:29:06
concurrent.futures.Future.set_running_or_notify_cancel()

set_running_or_notify_cancel() This method should only be called by Executor implementations before executing the

2016-10-07 17:29:08