#23464: remove JoinableQueue that was deprecated in 3.4.4.

Patch by A. Jesse Jiryu Davis.
This commit is contained in:
R David Murray 2015-04-12 18:47:56 -04:00
parent 5646de47e1
commit e81a773352
4 changed files with 7 additions and 17 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
@ -280,7 +279,3 @@ class LifoQueue(Queue):
def _get(self):
return self._queue.pop()
JoinableQueue = Queue
"""Deprecated alias for Queue."""