multiprocessing.Process.sentinel
  • References/Python/Python/Concurrent Execution

sentinel A numeric handle of a system object which will become “ready” when the process ends. You

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

cmd Command that was used to spawn the child process.

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

broken A boolean that is True if the barrier is in the broken state.

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

subprocess.check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None) Run command with

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

start() Start the process’s activity. This must be called at most once per process object. It

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

class multiprocessing.Semaphore([value]) A semaphore object: a close analog of

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

is_alive() Return whether the process is alive. Roughly, a process object is alive from the

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

Popen.returncode The child return code, set by poll() and wait() (and indirectly by communicate())

2025-01-10 15:47:30
sched.scheduler
  • References/Python/Python/Concurrent Execution

class sched.scheduler(timefunc=time.monotonic, delayfunc=time.sleep) The scheduler class defines a generic interface

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

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

2025-01-10 15:47:30