queue.Queue.empty()
  • References/Python/Python/Concurrent Execution

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

2025-01-10 15:47:30
_thread.exit()
  • References/Python/Python/Concurrent Execution

_thread.exit() Raise the

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

imap(func, iterable[, chunksize]) A lazier version of

2025-01-10 15:47:30
subprocess.CompletedProcess.check_returncode()
  • References/Python/Python/Concurrent Execution

check_returncode() If returncode is non-zero, raise a CalledProcessError.

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

class concurrent.futures.Future Encapsulates the asynchronous execution of a callable. Future instances are created

2025-01-10 15:47:30
multiprocessing.Queue.cancel_join_thread()
  • References/Python/Python/Concurrent Execution

cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from

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

Popen.kill() Kills the child. On Posix OSs the function sends SIGKILL to the child. On Windows kill() is an alias

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

multiprocessing.get_start_method(allow_none=False) Return the name of start method used for starting processes.

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

class multiprocessing.Barrier(parties[, action[, timeout]]) A barrier object: a clone of

2025-01-10 15:47:30
dummy_threading
  • References/Python/Python/Concurrent Execution

Source code: Lib/dummy_threading

2025-01-10 15:47:30