summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-03-13 19:25:20 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-03-13 19:25:20 (GMT)
commit652e7076fee59d92d19a0d6e326b9069a2aa09e4 (patch)
tree5287ec21422abfbe642d9ff2138cebac2ac04a00 /Misc
parentae2dbe2543859f9ad0ff0a2e84b33421c8fd5406 (diff)
downloadcpython-652e7076fee59d92d19a0d6e326b9069a2aa09e4.zip
cpython-652e7076fee59d92d19a0d6e326b9069a2aa09e4.tar.gz
cpython-652e7076fee59d92d19a0d6e326b9069a2aa09e4.tar.bz2
Issue #5392: when a very low recursion limit was set, the interpreter would
abort with a fatal error after the recursion limit was hit twice.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70ad5e2..4468df6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 2?
Core and Builtins
-----------------
+- Issue #5392: when a very low recursion limit was set, the interpreter would
+ abort with a fatal error after the recursion limit was hit twice.
+
Library
-------
@@ -24,8 +27,6 @@ What's New in Python 3.1 alpha 1
Core and Builtins
-----------------
-=======
-
- The io module has been reimplemented in C for speed.
- Give dict views an informative __repr__.