summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-03-18 23:06:53 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-03-18 23:06:53 (GMT)
commitc809f981437eff9882703ea5a8405e6daf79357c (patch)
tree97d2871e10c289ffc735d41709dc69b5c3d3e6e9 /Misc
parent3187749646340dd40779b4b0cd78db9a9edbe2fd (diff)
downloadcpython-c809f981437eff9882703ea5a8405e6daf79357c.zip
cpython-c809f981437eff9882703ea5a8405e6daf79357c.tar.gz
cpython-c809f981437eff9882703ea5a8405e6daf79357c.tar.bz2
Fixes Issue #14331: Use significantly less stack space when importing modules by
allocating path buffers on the heap instead of the stack.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b504b53..b1a60d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14331: Use significantly less stack space when importing modules by
+ allocating path buffers on the heap instead of the stack.
+
- Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not
passed strings.