asyncio: Sync with github repo

This commit is contained in:
Yury Selivanov 2015-05-11 13:48:16 -04:00
parent a032e46df6
commit 90ecfe65e6
5 changed files with 110 additions and 36 deletions

View file

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