summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-09-24 09:31:23 -0700
committerGuido van Rossum <guido@python.org>2016-09-24 09:31:23 -0700
commitb6396ce85b0c3bf852ed9a3a6464cb19d0745e3c (patch)
tree30c4356b3bf365ceb80d327b60e9187bbb4734cf /Doc/whatsnew/3.6.rst
parentaaf746ce88502928dba130efa4acc4b7cecc40f2 (diff)
downloadcpython-b6396ce85b0c3bf852ed9a3a6464cb19d0745e3c.tar.gz
Remove mention of asyncio.timeout context manager (it was removed)
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-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 b3f797f06f..0d848a8de3 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.