commit | 4bf21e28dfb42c2da3d440c2c0d9898cb3196fe1 | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Wed Dec 07 21:46:48 2011 +0100 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Wed Dec 07 21:46:48 2011 +0100 |
tree | b9fafb7a2350a27b2cf59a1ecfb84986601b65cd | |
parent | a94b578431725ea50381e7d31ff5580741593398 [diff] [blame] |
Issue #13546: Fixed an overflow issue that could crash the intepreter when calling sys.setrecursionlimit((1<<31)-1). 2.7 only.
diff --git a/Misc/NEWS b/Misc/NEWS index bf63153..6a089e3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #13546: Fixed an overflow issue that could crash the intepreter when + calling sys.setrecursionlimit((1<<31)-1). + - Issue #13333: The UTF-7 decoder now accepts lone surrogates (the encoder already accepts them).