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
multiprocessing.managers.BaseManager.start()

start([initializer[, initargs]]) Start a subprocess to start the manager. If initializer is not None then

2016-10-07 17:37:45
multiprocessing.managers.Namespace

class multiprocessing.managers.Namespace A type that can register with SyncManager. A

2016-10-07 17:37:46
multiprocessing.Connection.send()

send(obj) Send an object to the other end of the connection which should be read using recv().

2016-10-07 17:37:38
threading.Thread.name

name A string used for identification purposes only. It has no semantics. Multiple threads may be given the same name. The initial

2016-10-07 17:44:38
multiprocessing.sharedctypes.copy()

multiprocessing.sharedctypes.copy(obj) Return a ctypes object allocated from shared memory which is a copy of the ctypes object

2016-10-07 17:38:03
concurrent.futures.Future.add_done_callback()

add_done_callback(fn) Attaches the callable fn to the future. fn will be called, with the future as its only

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

result(timeout=None) Return the value returned by the call. If the call hasn’t yet completed then this method will wait up to

2016-10-07 17:29:08
threading.Semaphore.release()

release() Release a semaphore, incrementing the internal counter by one. When it was zero on entry and another thread is waiting

2016-10-07 17:44:37
queue.Queue.full()

Queue.full() Return True if the queue is full, False otherwise. If full() returns True

2016-10-07 17:41:05