diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-03-18 23:06:53 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-03-18 23:06:53 (GMT) |
commit | c809f981437eff9882703ea5a8405e6daf79357c (patch) | |
tree | 97d2871e10c289ffc735d41709dc69b5c3d3e6e9 /Misc | |
parent | 3187749646340dd40779b4b0cd78db9a9edbe2fd (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |