]> granicus.if.org Git - python/commitdiff
asyncio: Drop JoinableQueue from 3.5
authorYury Selivanov <yselivanov@sprymix.com>
Mon, 11 May 2015 18:42:43 +0000 (14:42 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Mon, 11 May 2015 18:42:43 +0000 (14:42 -0400)
Lib/asyncio/queues.py

index ed116620b4aed9b659fd73be987ef8fe4c337b6e..50543c829e33c9f3427c56500c2dced23e2cd478 100644 (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."""