threading.Condition.notify_all()

notify_all() Wake up all threads waiting on this condition. This method acts like notify(), but wakes up all waiting

2016-10-07 17:44:33
sched.scheduler

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

2016-10-07 17:41:30
multiprocessing.Process.start()

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

2016-10-07 17:37:57
subprocess.CalledProcessError.returncode

returncode Exit status of the child process. If the process exited due to a signal, this will be the negative signal number

2016-10-07 17:43:32
multiprocessing.Process.is_alive()

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

2016-10-07 17:37:56
threading.Timer

class threading.Timer(interval, function, args=None, kwargs=None) Create a timer that will run function with arguments

2016-10-07 17:44:39
multiprocessing.managers.BaseManager.start()

start([initializer[, initargs]]) Start a subprocess to start the manager. If initializer is not None then

2016-10-07 17:37:45
sched.scheduler.cancel()

scheduler.cancel(event) Remove the event from the queue. If event is not an event currently in the queue, this method

2016-10-07 17:41:30
multiprocessing.BufferTooShort

exception multiprocessing.BufferTooShort Exception raised by Connection.recv_bytes_into() when the supplied buffer

2016-10-07 17:37:33
threading.Barrier.broken

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

2016-10-07 17:44:31