summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-23 09:46:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-23 09:46:03 (GMT)
commit9961405ed122c0f91b063f3237ad47278ae72f62 (patch)
treec3cc6c2ed0312469a8b5bfe526a4bc8eb7f13750 /Misc/NEWS
parente17de091012eb928c5734856eeaf2bb8f99e40c1 (diff)
downloadcpython-9961405ed122c0f91b063f3237ad47278ae72f62.zip
cpython-9961405ed122c0f91b063f3237ad47278ae72f62.tar.gz
cpython-9961405ed122c0f91b063f3237ad47278ae72f62.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/NEWS')
-rw-r--r--Misc/NEWS14
1 files changed, 14 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4b74609..c103386 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,20 @@
Python News
+++++++++++
+What's New in Python 3.4.2?
+===========================
+
+Release date: XXXX-XX-XX
+
+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.
+
+
What's New in Python 3.4.1?
===========================