diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2023-09-13 16:00:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 16:00:39 (GMT) |
commit | 987b4bc0870e1e29a88275dc3fa39bf2c3dcc763 (patch) | |
tree | 92f0ec16bf4377afab41a040266836ed43879c00 /Misc/NEWS.d | |
parent | 79101edb03b7381b514126c68acabfcbbba2f842 (diff) | |
download | cpython-987b4bc0870e1e29a88275dc3fa39bf2c3dcc763.zip cpython-987b4bc0870e1e29a88275dc3fa39bf2c3dcc763.tar.gz cpython-987b4bc0870e1e29a88275dc3fa39bf2c3dcc763.tar.bz2 |
gh-109341: Fix crash on compiling invalid AST including TypeAlias (#109349)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-09-12-15-45-49.gh-issue-109341.4V5bkm.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-12-15-45-49.gh-issue-109341.4V5bkm.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-12-15-45-49.gh-issue-109341.4V5bkm.rst new file mode 100644 index 0000000..9e99ef7 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-12-15-45-49.gh-issue-109341.4V5bkm.rst @@ -0,0 +1 @@ +Fix crash when compiling an invalid AST involving a :class:`ast.TypeAlias`. |