diff options
author | Ned Deily <nad@acm.org> | 2011-04-09 19:32:12 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-04-09 19:32:12 (GMT) |
commit | 517ac72b00f34ce6fc00ea79997d5bf9464401b1 (patch) | |
tree | 860d5f1eb22f1d80e3af4e1d43e4c0d30e5aedaf /Misc | |
parent | e620d1070192ef85f2520e9f60cdbde2adb4d465 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |