diff options
author | Tom Gringauz <tomgrin10@gmail.com> | 2020-11-18 00:58:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 14:58:35 -0800 |
commit | 9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4 (patch) | |
tree | 760625cccfbfb1492a4166551fe94490fa9f388e | |
parent | 7f9b25a21ab95f8cf8d663396993766307be475c (diff) | |
download | cpython-git-9c98e8cc3ebf56d01183c67adbc000ed19b8e0f4.tar.gz |
bpo-42396: Add a whatsnew entry about async contextlib.nullcontext (GH-23357)
Automerge-Triggered-By: GH:asvetlov
-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 786cc61003..41252b8e0a 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 ------ |