summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-03 23:32:07 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-03 23:32:07 (GMT)
commitef32bc856982b25b869fc6f89a44993ab7e86de1 (patch)
treea25d709a9b58d26e958985038e2b78b48c111d79 /Misc
parent925ca76ae7cf25eb0706145447e695c0c98973bb (diff)
downloadcpython-ef32bc856982b25b869fc6f89a44993ab7e86de1.zip
cpython-ef32bc856982b25b869fc6f89a44993ab7e86de1.tar.gz
cpython-ef32bc856982b25b869fc6f89a44993ab7e86de1.tar.bz2
Merged revisions 78639 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r78639 | victor.stinner | 2010-03-04 00:28:07 +0100 (jeu., 04 mars 2010) | 10 lines Merged revisions 78638 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78638 | victor.stinner | 2010-03-04 00:20:25 +0100 (jeu., 04 mars 2010) | 3 lines Issue #7544: Preallocate thread memory before creating the thread to avoid a fatal error in low memory condition. ........ ................
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 361a8a6..9bc7f61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.2?
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.