diff options
author | Tom Gringauz <tomgrin10@gmail.com> | 2020-11-17 22:58:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 22:58:35 (GMT) |
commit | 9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4 (patch) | |
tree | 760625cccfbfb1492a4166551fe94490fa9f388e /Doc | |
parent | 7f9b25a21ab95f8cf8d663396993766307be475c (diff) | |
download | cpython-9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4.zip cpython-9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4.tar.gz cpython-9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4.tar.bz2 |
bpo-42396: Add a whatsnew entry about async contextlib.nullcontext (GH-23357)
Automerge-Triggered-By: GH:asvetlov
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 786cc61..41252b8 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -183,6 +183,9 @@ Add a :func:`contextlib.aclosing` context manager to safely close async generato and objects representing asynchronously released resources. (Contributed by Joongi Kim and John Belmonte in :issue:`41229`.) +Add asynchronous context manager support to :func:`contextlib.nullcontext`. +(Contributed by Tom Gringauz in :issue:`41543`.) + curses ------ |