diff options
author | Thomas Krennwallner <tk@postsubmeta.net> | 2023-03-11 13:19:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 13:19:40 (GMT) |
commit | ced13c96a4eb9391a9d27e3e13218f70c579670f (patch) | |
tree | 2e48fbdb4e1539ae821c5b3ac0a7a70e6d1fbf93 /Misc/NEWS.d | |
parent | aa0a73d1bc53dcb6348a869df1e775138991e561 (diff) | |
download | cpython-ced13c96a4eb9391a9d27e3e13218f70c579670f.zip cpython-ced13c96a4eb9391a9d27e3e13218f70c579670f.tar.gz cpython-ced13c96a4eb9391a9d27e3e13218f70c579670f.tar.bz2 |
gh-79940: add introspection API for asynchronous generators to `inspect` module (#11590)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-02-26-17-29-57.gh-issue-79940.SAfmAy.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-02-26-17-29-57.gh-issue-79940.SAfmAy.rst b/Misc/NEWS.d/next/Library/2023-02-26-17-29-57.gh-issue-79940.SAfmAy.rst new file mode 100644 index 0000000..31b8ead --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-02-26-17-29-57.gh-issue-79940.SAfmAy.rst @@ -0,0 +1,2 @@ +Add :func:`inspect.getasyncgenstate` and :func:`inspect.getasyncgenlocals`. +Patch by Thomas Krennwallner. |