asyncio: Drop JoinableQueue from 3.5

This commit is contained in:
Yury Selivanov 2015-05-11 14:42:43 -04:00
parent 7a093d9c71
commit 926b990d3d
1 changed files with 1 additions and 6 deletions

View File

@ -1,7 +1,6 @@
"""Queues"""
__all__ = ['Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty',
'JoinableQueue']
__all__ = ['Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty']
import collections
import heapq
@ -287,7 +286,3 @@ class LifoQueue(Queue):
def _get(self):
return self._queue.pop()
JoinableQueue = Queue
"""Deprecated alias for Queue."""