summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-04-09 19:29:58 (GMT)
committerNed Deily <nad@acm.org>2011-04-09 19:29:58 (GMT)
commite427f0f432d0640690e0b7a7f2d5d08cc1ad5415 (patch)
tree744ff8358ed4ff8069df334a09b121ae42612772 /Misc
parentfe2f1ad5b5ac92cc153ff9fdbd88f6058d50a75f (diff)
downloadcpython-e427f0f432d0640690e0b7a7f2d5d08cc1ad5415.zip
cpython-e427f0f432d0640690e0b7a7f2d5d08cc1ad5415.tar.gz
cpython-e427f0f432d0640690e0b7a7f2d5d08cc1ad5415.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 ee75bda..034f821 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,11 @@ What's New in Python 2.7.2?
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.