diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-04-12 22:47:56 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-04-12 22:47:56 (GMT) |
commit | e81a773352bdfae94856f69b54f0e37917bd688b (patch) | |
tree | 330e9a547578074b27e22c6f03825af69e3e6b84 /Doc | |
parent | 5646de47e18b8a357dff4e01c2f949c6f288e035 (diff) | |
download | cpython-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 'Doc')
-rw-r--r-- | Doc/library/asyncio-queue.rst | 11 | ||||
-rw-r--r-- | Doc/whatsnew/3.5.rst | 4 |
2 files changed, 4 insertions, 11 deletions
diff --git a/Doc/library/asyncio-queue.rst b/Doc/library/asyncio-queue.rst index 3370672..f11c09a 100644 --- a/Doc/library/asyncio-queue.rst +++ b/Doc/library/asyncio-queue.rst @@ -8,7 +8,6 @@ Queues: * :class:`Queue` * :class:`PriorityQueue` * :class:`LifoQueue` -* :class:`JoinableQueue` asyncio queue API was designed to be close to classes of the :mod:`queue` module (:class:`~queue.Queue`, :class:`~queue.PriorityQueue`, @@ -144,16 +143,6 @@ LifoQueue first. -JoinableQueue -^^^^^^^^^^^^^ - -.. class:: JoinableQueue - - Deprecated alias for :class:`Queue`. - - .. deprecated:: 3.4.4 - - Exceptions ^^^^^^^^^^ diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index e3381ae..28914ef 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -630,6 +630,10 @@ removed: 3.4, and has now been removed. (Contributed by Matt Chaput in :issue:`6623`.) +* The JoinableQueue class in the provisional asyncio module was deprecated + in 3.4.4 and is now removed (:issue:`23464`). + + Porting to Python 3.5 ===================== |