multiprocessing.managers.BaseProxy.
  • References/Python/Python/Concurrent Execution

__str__() Return the representation of the referent.

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

hStdOutput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard output handle

2025-01-10 15:47:30
queue.LifoQueue
  • References/Python/Python/Concurrent Execution

class queue.LifoQueue(maxsize=0) Constructor for a LIFO queue. maxsize is an integer that sets the upperbound limit

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
multiprocessing.pool.AsyncResult
  • References/Python/Python/Concurrent Execution

class multiprocessing.pool.AsyncResult The class of the result returned by Pool.apply_async() and Pool.map_async()

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

cmd Command that was used to spawn the child process.

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

exception subprocess.CalledProcessError Subclass of SubprocessError, raised when a process run by check_call()

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

Queue.task_done() Indicate that a formerly enqueued task is complete. Used by queue consumer threads. For each get()

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

put(item) Put item into the queue.

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

scheduler.run(blocking=True) Run all scheduled events. This method will wait (using the delayfunc() function passed

2025-01-10 15:47:30