summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-11 18:42:43 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-05-11 18:42:43 (GMT)
commit926b990d3d19788e3b5fb5700570721e74049484 (patch)
treebfbb2eb9dfe3c642e167b19bd6c32dddbc9191fd /Lib/asyncio
parent7a093d9c71b86a19832a3067b6a4e56ba7963ebf (diff)
downloadcpython-926b990d3d19788e3b5fb5700570721e74049484.zip
cpython-926b990d3d19788e3b5fb5700570721e74049484.tar.gz
cpython-926b990d3d19788e3b5fb5700570721e74049484.tar.bz2
asyncio: Drop JoinableQueue from 3.5
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/queues.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py
index ed11662..50543c8 100644
--- a/Lib/asyncio/queues.py
+++ b/Lib/asyncio/queues.py
@@ -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."""