diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-14 22:40:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 22:40:19 (GMT) |
commit | 5c7e8c3b72992bb668cafa101b71d8d14e395830 (patch) | |
tree | 94000aab7585e6f9d75772f76c57c331eb2e65a3 /Misc/NEWS.d/next | |
parent | 36d6ba08d0b143bfa52cbb642dc256d0b6fb040e (diff) | |
download | cpython-5c7e8c3b72992bb668cafa101b71d8d14e395830.zip cpython-5c7e8c3b72992bb668cafa101b71d8d14e395830.tar.gz cpython-5c7e8c3b72992bb668cafa101b71d8d14e395830.tar.bz2 |
[3.12] gh-109341: Fix crash on compiling invalid AST including TypeAlias (GH-109349) (#109381)
gh-109341: Fix crash on compiling invalid AST including TypeAlias (GH-109349)
(cherry picked from commit 987b4bc0870e1e29a88275dc3fa39bf2c3dcc763)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-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`. |