summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-12-19 11:04:44 (GMT)
committerGitHub <noreply@github.com>2023-12-19 11:04:44 (GMT)
commite51b4009454939e3ee5f1bfaed45ce65689a71b8 (patch)
tree0933d9a4624dbb4f74a00ef5e1e4dfdcf7ab5327 /Misc
parent76d757b38b414964546393bdccff31c1f8be3843 (diff)
downloadcpython-e51b4009454939e3ee5f1bfaed45ce65689a71b8.zip
cpython-e51b4009454939e3ee5f1bfaed45ce65689a71b8.tar.gz
cpython-e51b4009454939e3ee5f1bfaed45ce65689a71b8.tar.bz2
gh-113054: Compiler no longer replaces a redundant jump with no line number by a NOP (#113139)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-12-14-20-08-35.gh-issue-113054.e20CtM.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-12-14-20-08-35.gh-issue-113054.e20CtM.rst b/Misc/NEWS.d/next/Core and Builtins/2023-12-14-20-08-35.gh-issue-113054.e20CtM.rst
new file mode 100644
index 0000000..d0729f9
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-12-14-20-08-35.gh-issue-113054.e20CtM.rst
@@ -0,0 +1,2 @@
+Fixed bug where a redundant NOP is not removed, causing an assertion to fail
+in the compiler in debug mode.