Commit 926b990d authored by Yury Selivanov's avatar Yury Selivanov

asyncio: Drop JoinableQueue from 3.5

parent 7a093d9c
"""Queues""" """Queues"""
__all__ = ['Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty', __all__ = ['Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty']
'JoinableQueue']
import collections import collections
import heapq import heapq
...@@ -287,7 +286,3 @@ class LifoQueue(Queue): ...@@ -287,7 +286,3 @@ class LifoQueue(Queue):
def _get(self): def _get(self):
return self._queue.pop() return self._queue.pop()
JoinableQueue = Queue
"""Deprecated alias for Queue."""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment