diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-23 09:47:32 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-23 09:47:32 (GMT) |
commit | 5c8008e59da8da1eff9c2fc0c93ddae32f725d5f (patch) | |
tree | fffe086975b50feb0e965147713576a45ce0acb9 /Misc | |
parent | a52ecc0a02cbc2512c928ca97e2573072ab39655 (diff) | |
parent | 9961405ed122c0f91b063f3237ad47278ae72f62 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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). |