summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2015-04-12 22:47:56 (GMT)
committerR David Murray <rdmurray@bitdance.com>2015-04-12 22:47:56 (GMT)
commite81a773352bdfae94856f69b54f0e37917bd688b (patch)
tree330e9a547578074b27e22c6f03825af69e3e6b84 /Lib
parent5646de47e18b8a357dff4e01c2f949c6f288e035 (diff)
downloadcpython-e81a773352bdfae94856f69b54f0e37917bd688b.zip
cpython-e81a773352bdfae94856f69b54f0e37917bd688b.tar.gz
cpython-e81a773352bdfae94856f69b54f0e37917bd688b.tar.bz2
#23464: remove JoinableQueue that was deprecated in 3.4.4.
Patch by A. Jesse Jiryu Davis.
Diffstat (limited to 'Lib')
-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 84cdabc..264e1ce 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
@@ -280,7 +279,3 @@ class LifoQueue(Queue):
def _get(self):
return self._queue.pop()
-
-
-JoinableQueue = Queue
-"""Deprecated alias for Queue."""