summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-04-09 19:32:12 (GMT)
committerNed Deily <nad@acm.org>2011-04-09 19:32:12 (GMT)
commit517ac72b00f34ce6fc00ea79997d5bf9464401b1 (patch)
tree860d5f1eb22f1d80e3af4e1d43e4c0d30e5aedaf /Misc
parente620d1070192ef85f2520e9f60cdbde2adb4d465 (diff)
downloadcpython-517ac72b00f34ce6fc00ea79997d5bf9464401b1.zip
cpython-517ac72b00f34ce6fc00ea79997d5bf9464401b1.tar.gz
cpython-517ac72b00f34ce6fc00ea79997d5bf9464401b1.tar.bz2
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. (Patch by Ronald Oussoren)
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 5307fe8..81586f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.1.4?
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.