Lines Matching refs:Queue
7 from multiprocessing import Process, Queue
16 from Queue import Empty # Python 2
26 global Queue
28 del Queue
31 from queue import Queue # Python 3
33 from Queue import Queue # Python 2
36 # Monkeypatch threading Queue to look like multiprocessing Queue.
37 Queue.cancel_join_thread = lambda self: None
144 self.work_queue = Queue()
145 self.done_queue = Queue()