summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-05-28 07:45:52 (GMT)
committerNed Deily <nad@acm.org>2011-05-28 07:45:52 (GMT)
commit61be422bd73784615249d3dfe28c0a8f322b5d65 (patch)
tree613337dad15451d72ef28485be333624c5af8f4b /Misc
parentaeabd5f29c6ed47986fcdfc88417e8f386824f52 (diff)
parent056f5b9dadd834c26fc6deb87a831b6a3d9f4bf7 (diff)
downloadcpython-61be422bd73784615249d3dfe28c0a8f322b5d65.zip
cpython-61be422bd73784615249d3dfe28c0a8f322b5d65.tar.gz
cpython-61be422bd73784615249d3dfe28c0a8f322b5d65.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 9c00590..3238406 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.3 Alpha 1?
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)
+
- Issue #12106: The use of the multiple-with shorthand syntax is now reflected
in the AST.