summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-23 09:47:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-23 09:47:32 (GMT)
commit5c8008e59da8da1eff9c2fc0c93ddae32f725d5f (patch)
treefffe086975b50feb0e965147713576a45ce0acb9 /Misc
parenta52ecc0a02cbc2512c928ca97e2573072ab39655 (diff)
parent9961405ed122c0f91b063f3237ad47278ae72f62 (diff)
downloadcpython-5c8008e59da8da1eff9c2fc0c93ddae32f725d5f.zip
cpython-5c8008e59da8da1eff9c2fc0c93ddae32f725d5f.tar.gz
cpython-5c8008e59da8da1eff9c2fc0c93ddae32f725d5f.tar.bz2
Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler.
This also fixes a quadratic compilation time issue noticeable when compiling code with a large number of "and" and "or" operators.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 76006d9..7e55c21 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #21523: Fix over-pessimistic computation of the stack effect of
+ some opcodes in the compiler. This also fixes a quadratic compilation
+ time issue noticeable when compiling code with a large number of "and"
+ and "or" operators.
+
- Issue #21418: Fix a crash in the builtin function super() when called without
argument and without current frame (ex: embedded Python).