summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-10-14 19:14:38 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-10-14 19:14:38 (GMT)
commite441cb71c73649da991d8bc418650f2748a58f72 (patch)
treeb66219e97e32365d78713941065d74315d8d026d /Misc
parent46afef330f88ddcf4106094e86f54f90dbdec390 (diff)
downloadcpython-e441cb71c73649da991d8bc418650f2748a58f72.zip
cpython-e441cb71c73649da991d8bc418650f2748a58f72.tar.gz
cpython-e441cb71c73649da991d8bc418650f2748a58f72.tar.bz2
Issue #1754094: Improve the stack depth calculation in the compiler.
There should be no other effect than a small decrease in memory use.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 101487a..4a82a5e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #1754094: Improve the stack depth calculation in the compiler.
+ There should be no other effect than a small decrease in memory use.
+ Patch by Christopher Tur Lesniewski-Laas.
+
- Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when
using byte values greater than 127. Patch by egreen.