diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2017-12-14 01:19:17 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2017-12-14 01:19:17 (GMT) |
commit | 176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf (patch) | |
tree | 308b48c9671eb33abe108d59b87eaaccad40d9eb /Doc/whatsnew | |
parent | bfbf04ef18c93ca8cab0453f76aeea1d8fc23fb1 (diff) | |
download | cpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.zip cpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.tar.gz cpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.tar.bz2 |
bpo-30241: implement contextlib.AbstractAsyncContextManager (#1412)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 81a88a0..80f2a7f 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -306,8 +306,9 @@ is a list of strings, not bytes. contextlib ---------- -:func:`contextlib.asynccontextmanager` has been added. (Contributed by -Jelle Zijlstra in :issue:`29679`.) +:func:`~contextlib.asynccontextmanager` and +:class:`~contextlib.AbstractAsyncContextManager` have been added. (Contributed +by Jelle Zijlstra in :issue:`29679` and :issue:`30241`.) cProfile -------- |