summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
authorIlya Kulakov <kulakov.ilya@gmail.com>2018-01-25 20:51:18 (GMT)
committerYury Selivanov <yury@magic.io>2018-01-25 20:51:18 (GMT)
commit1aa094f74039cd20fdc7df56c68f6848c18ce4dd (patch)
tree7390595ae9e64c0dc0e7b64254848d8acb2c8928 /Doc/whatsnew/3.7.rst
parent6ab62920c87930dedc31fe633ecda3e51d3d7503 (diff)
downloadcpython-1aa094f74039cd20fdc7df56c68f6848c18ce4dd.zip
cpython-1aa094f74039cd20fdc7df56c68f6848c18ce4dd.tar.gz
cpython-1aa094f74039cd20fdc7df56c68f6848c18ce4dd.tar.bz2
bpo-29302: Implement contextlib.AsyncExitStack. (#4790)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index e52e32c..e9f0570 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -379,6 +379,9 @@ contextlib
:class:`~contextlib.AbstractAsyncContextManager` have been added. (Contributed
by Jelle Zijlstra in :issue:`29679` and :issue:`30241`.)
+:class:`contextlib.AsyncExitStack` has been added. (Contributed by
+Alexander Mohr and Ilya Kulakov in :issue:`29302`.)
+
cProfile
--------