diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-03 18:34:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-03 18:34:34 (GMT) |
commit | 658fad8aae60e6c25a102fb56884bf66577366f8 (patch) | |
tree | 641c4687bd0227b36f37fc9d1014358857b27df1 /Misc | |
parent | 338f5786eac83f473bcdde27fea6280c762fd92d (diff) | |
download | cpython-658fad8aae60e6c25a102fb56884bf66577366f8.zip cpython-658fad8aae60e6c25a102fb56884bf66577366f8.tar.gz cpython-658fad8aae60e6c25a102fb56884bf66577366f8.tar.bz2 |
Issue #3697: "Fatal Python error: Cannot recover from stack overflow"
could be easily encountered under Windows in debug mode when exercising
the recursion limit checking code, due to bogus handling of recursion
limit when USE_STACKCHEK was enabled.
Reviewed by Amaury Forgeot d'Arc on IRC.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 3.0 release candidate 1 Core and Builtins ----------------- +- Issue #3697: "Fatal Python error: Cannot recover from stack overflow" + could be easily encountered under Windows in debug mode when exercising + the recursion limit checking code, due to bogus handling of recursion + limit when USE_STACKCHEK was enabled. + - Issue 3639: The _warnings module could segfault the interpreter when unexpected types were passed in as arguments. |