summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-04-09 19:37:55 (GMT)
committerNed Deily <nad@acm.org>2011-04-09 19:37:55 (GMT)
commit15012a67d25dbd1cee5e014be5f5f999c96c9c13 (patch)
treeee4d562503929d3d015ca5039509b21ad1c88247 /Misc
parent226580e6dc46eab9c33b64a5635645686e5df57f (diff)
parent517ac72b00f34ce6fc00ea79997d5bf9464401b1 (diff)
downloadcpython-15012a67d25dbd1cee5e014be5f5f999c96c9c13.zip
cpython-15012a67d25dbd1cee5e014be5f5f999c96c9c13.tar.gz
cpython-15012a67d25dbd1cee5e014be5f5f999c96c9c13.tar.bz2
Issue #9670: merge with 3.2
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 23026db..dfb129c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.2.1?
Core and Builtins
-----------------
+- Issue #9670: Increase the default stack size for secondary threads on
+ Mac OS X and FreeBSD to reduce the chances of a crash instead of a
+ "maximum recursion depth" RuntimeError exception.
+ (original patch by Ronald Oussoren)
+
- Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
(EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
written by Charles-Francois Natali.