multiprocessing.JoinableQueue.task_done()
  • References/Python/Python/Concurrent Execution

task_done() Indicate that a formerly enqueued task is complete. Used by queue consumers. For each get() used to

2025-01-10 15:47:30
multiprocessing.connection.Listener.last_accepted
  • References/Python/Python/Concurrent Execution

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

2025-01-10 15:47:30
subprocess.Popen.stderr
  • References/Python/Python/Concurrent Execution

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

2025-01-10 15:47:30
threading.Thread.daemon
  • References/Python/Python/Concurrent Execution

daemon A boolean value indicating whether this thread is a daemon thread (True) or not (False). This must be set before start()

2025-01-10 15:47:30
multiprocessing.managers.SyncManager.Array()
  • References/Python/Python/Concurrent Execution

Array(typecode, sequence) Create an array and return a proxy for it.

2025-01-10 15:47:30
multiprocessing.pool.Pool.apply()
  • References/Python/Python/Concurrent Execution

apply(func[, args[, kwds]]) Call func with arguments args and keyword arguments kwds. It blocks until

2025-01-10 15:47:30
multiprocessing.pool.Pool.imap_unordered()
  • References/Python/Python/Concurrent Execution

imap_unordered(func, iterable[, chunksize]) The same as imap() except that the ordering of the results from the

2025-01-10 15:47:30
subprocess.CalledProcessError.output
  • References/Python/Python/Concurrent Execution

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

2025-01-10 15:47:30
concurrent.futures.Future.cancel()
  • References/Python/Python/Concurrent Execution

cancel() Attempt to cancel the call. If the call is currently being executed and cannot be cancelled then the method will return

2025-01-10 15:47:30
concurrent.futures.Future.exception()
  • References/Python/Python/Concurrent Execution

exception(timeout=None) Return the exception raised by the call. If the call hasn’t yet completed then this method will wait

2025-01-10 15:47:30