diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-13 19:25:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-13 19:25:20 (GMT) |
commit | 652e7076fee59d92d19a0d6e326b9069a2aa09e4 (patch) | |
tree | 5287ec21422abfbe642d9ff2138cebac2ac04a00 /Misc | |
parent | ae2dbe2543859f9ad0ff0a2e84b33421c8fd5406 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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__. |