summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-10-14 17:17:14 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-10-14 17:17:14 (GMT)
commit7fdd1cb583f9aac11e65a65b185e75c025d716cd (patch)
treeaee76f6f538a8b4f15066d98326e35e9cb5e5bf1 /Misc/NEWS
parent647e9d2652663b9c100be51e22fd6cfc76de95e5 (diff)
downloadcpython-7fdd1cb583f9aac11e65a65b185e75c025d716cd.zip
cpython-7fdd1cb583f9aac11e65a65b185e75c025d716cd.tar.gz
cpython-7fdd1cb583f9aac11e65a65b185e75c025d716cd.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. Patch by Christopher Tur Lesniewski-Laas.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2fdbd6d..5c5acd7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 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 #7084: Fix a (very unlikely) crash when printing a list from one
thread, and mutating it from another one. Patch by Scott Dial.