diff options
author | Ned Deily <nad@acm.org> | 2011-05-28 07:19:56 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-05-28 07:19:56 (GMT) |
commit | 9a7c524dc613595e0d88b3e22b0e49b69467ffc4 (patch) | |
tree | 69f59204644d9feb72596d19a5ba508169803aca /Misc | |
parent | 0a5dad9ef1e3203f3ab7a15ffe051299081ef672 (diff) | |
download | cpython-9a7c524dc613595e0d88b3e22b0e49b69467ffc4.zip cpython-9a7c524dc613595e0d88b3e22b0e49b69467ffc4.tar.gz cpython-9a7c524dc613595e0d88b3e22b0e49b69467ffc4.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. + (patch by Ronald Oussoren) + - Correct lookup of __dir__ on objects. Among other things, this causes errors besides AttributeError found on lookup to be propagated. |