diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-03 23:20:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-03 23:20:25 (GMT) |
commit | 71fb87e64c51627564262fd64299f7ac79625404 (patch) | |
tree | df72f580ff07a3bd5419e3a3509a8c5806a51836 /Misc/NEWS | |
parent | 2379bb664ac33b77d076a9a8db59f73af9eb3c8f (diff) | |
download | cpython-71fb87e64c51627564262fd64299f7ac79625404.zip cpython-71fb87e64c51627564262fd64299f7ac79625404.tar.gz cpython-71fb87e64c51627564262fd64299f7ac79625404.tar.bz2 |
Issue #7544: Preallocate thread memory before creating the thread to avoid a
fatal error in low memory condition.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 4? Core and Builtins ----------------- +- Issue #7544: Preallocate thread memory before creating the thread to avoid + a fatal error in low memory condition. + - Issue #7820: The parser tokenizer restores all bytes in the right if the BOM check fails. |