summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-09-24 16:31:23 (GMT)
committerGuido van Rossum <guido@python.org>2016-09-24 16:31:23 (GMT)
commita653196585363955092e7af6b80483672ccfe581 (patch)
tree72555d2561a9c1bf3c41840f920a2fe03696e946 /Doc
parent6997946ec45378b3e9aa7d2f8c500bbcb9821739 (diff)
downloadcpython-a653196585363955092e7af6b80483672ccfe581.zip
cpython-a653196585363955092e7af6b80483672ccfe581.tar.gz
cpython-a653196585363955092e7af6b80483672ccfe581.tar.bz2
Remove mention of asyncio.timeout context manager (it was removed)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index b3f797f..0d848a8 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -624,10 +624,6 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0:
method to get the current exception handler.
(Contributed by Yury Selivanov.)
-* New :func:`~asyncio.timeout` context manager to simplify timeouts
- handling code.
- (Contributed by Andrew Svetlov.)
-
* New :meth:`StreamReader.readuntil() <asyncio.StreamReader.readuntil>`
method to read data from the stream until a separator bytes
sequence appears.