diff options
author | Ned Deily <nad@acm.org> | 2011-04-09 19:29:58 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-04-09 19:29:58 (GMT) |
commit | e427f0f432d0640690e0b7a7f2d5d08cc1ad5415 (patch) | |
tree | 744ff8358ed4ff8069df334a09b121ae42612772 /Misc | |
parent | fe2f1ad5b5ac92cc153ff9fdbd88f6058d50a75f (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |