diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2017-05-01 01:25:58 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@gmail.com> | 2017-05-01 01:25:58 (GMT) |
commit | 2e624690bd74071358566300b7ef0bc45f444a30 (patch) | |
tree | f96176f5997f38c00974854907b586ce887981a3 /Doc/whatsnew | |
parent | 9dc2b3809f38be2e403ee264958106badfda142d (diff) | |
download | cpython-2e624690bd74071358566300b7ef0bc45f444a30.zip cpython-2e624690bd74071358566300b7ef0bc45f444a30.tar.gz cpython-2e624690bd74071358566300b7ef0bc45f444a30.tar.bz2 |
bpo-29679: Implement @contextlib.asynccontextmanager (#360)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 875fc55..cb0086c 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -95,6 +95,12 @@ New Modules Improved Modules ================ +contextlib +---------- + +:func:`contextlib.asynccontextmanager` has been added. (Contributed by +Jelle Zijlstra in :issue:`29679`.) + distutils --------- |