queue.Empty
  • References/Python/Python/Concurrent Execution

exception queue.Empty Exception raised when non-blocking get() (or get_nowait()) is called on a Queue

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

poll([timeout]) Return whether there is any data available to be read. If timeout is

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

subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run the command described by args

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

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

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

stdout Alias for output, for symmetry with stderr.

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

multiprocessing.set_executable() Sets the path of the Python interpreter to use when starting a child process. (By default

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

Popen.wait(timeout=None) Wait for child process to terminate. Set and return returncode attribute.

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

join([timeout]) If the optional argument timeout is None (the default), the method blocks until the process

2025-01-10 15:47:30
The concurrent package
  • References/Python/Python/Concurrent Execution

Currently, there is only one module in this package:

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

class threading.BoundedSemaphore(value=1) Class implementing bounded semaphore objects. A bounded semaphore checks to make sure

2025-01-10 15:47:30