diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2023-06-16 16:31:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 16:31:23 (GMT) |
commit | 957a974d4fc1575787e4a29a399a47520d6df6d3 (patch) | |
tree | 5bfca946786c529e843f95f18c71e83ff16a603c /Misc | |
parent | 70c075c194d3739ae10ce76265f05fa82ed46487 (diff) | |
download | cpython-957a974d4fc1575787e4a29a399a47520d6df6d3.zip cpython-957a974d4fc1575787e4a29a399a47520d6df6d3.tar.gz cpython-957a974d4fc1575787e4a29a399a47520d6df6d3.tar.bz2 |
gh-104799: PEP 695 backward compatibility for ast.unparse (#105846)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-06-15-18-11-47.gh-issue-104799.BcLzbP.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-15-18-11-47.gh-issue-104799.BcLzbP.rst b/Misc/NEWS.d/next/Library/2023-06-15-18-11-47.gh-issue-104799.BcLzbP.rst new file mode 100644 index 0000000..d0dbff4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-06-15-18-11-47.gh-issue-104799.BcLzbP.rst @@ -0,0 +1,3 @@ +Enable :func:`ast.unparse` to unparse function and class definitions created +without the new ``type_params`` field from :pep:`695`. Patch by Jelle +Zijlstra. |