summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>2024-09-18 16:42:33 (GMT)
committerGitHub <noreply@github.com>2024-09-18 16:42:33 (GMT)
commit5cd50cb6eb28e525f0c838e049e900ea982a5a23 (patch)
treeab6b3f78879582e09c024a93be836578fe05122c /Misc/NEWS.d/next
parent8b6c7c7877c26f0201f37f69d4db2f35d7abd760 (diff)
downloadcpython-5cd50cb6eb28e525f0c838e049e900ea982a5a23.zip
cpython-5cd50cb6eb28e525f0c838e049e900ea982a5a23.tar.gz
cpython-5cd50cb6eb28e525f0c838e049e900ea982a5a23.tar.bz2
gh-122145: Handle an empty AST body when reporting tracebacks (#122161)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2024-07-23-12-38-14.gh-issue-122145.sTO8nX.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-07-23-12-38-14.gh-issue-122145.sTO8nX.rst b/Misc/NEWS.d/next/Library/2024-07-23-12-38-14.gh-issue-122145.sTO8nX.rst
new file mode 100644
index 0000000..a4282f1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-07-23-12-38-14.gh-issue-122145.sTO8nX.rst
@@ -0,0 +1,3 @@
+Fix an issue when reporting tracebacks corresponding to Python code
+emitting an empty AST body.
+Patch by Nikita Sobolev and Bénédikt Tran.