Searched refs:LifoQueue (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_queue.py | 98 LifoQueue = [222, 333, 111], 201 type2test = Queue.LifoQueue
|
/external/python/cpython3/Lib/asyncio/ |
D | queues.py | 242 class LifoQueue(Queue): class
|
/external/python/cpython2/Lib/ |
D | Queue.py | 231 class LifoQueue(Queue): class
|
/external/python/cpython3/Lib/ |
D | queue.py | 242 class LifoQueue(Queue): class
|
/external/python/cpython2/Doc/library/ |
D | queue.rst | 39 .. class:: LifoQueue(maxsize=0) 86 Queue objects (:class:`~Queue.Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`)
|
/external/python/cpython3/Lib/test/ |
D | test_queue.py | 102 LifoQueue = [222, 333, 111], 257 self.type2test = self.queue.LifoQueue
|
/external/python/cpython3/Doc/library/ |
D | asyncio-api-index.rst | 93 * - :class:`LifoQueue`
|
D | queue.rst | 43 .. class:: LifoQueue(maxsize=0) 101 Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`)
|
D | asyncio-queue.rst | 127 .. class:: LifoQueue
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_queues.py | 618 q = asyncio.LifoQueue(loop=self.loop) 710 q_class = asyncio.LifoQueue
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 616 Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't increment
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2247 and :class:`LifoQueue` retrieves the most recently added entries first,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 2251 and :class:`LifoQueue` retrieves the most recently added entries first,
|
/external/python/cpython3/Misc/ |
D | HISTORY | 563 - Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't
|