queue
queue — A synchronized queue class
Source code: Lib/queue.py
The queue
module implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be exchanged safely between multiple threads. The Queue
class in this module implements all the required locking semantics. It depends on the availability of thread support in Python; see the threading
module.
The module implements three types