summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-15 13:15:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-15 13:15:31 (GMT)
commit5b4b2da55dbc2a439235e8e969309c143320f4fc (patch)
tree85ee9f6b7114b1e5836256dd91a2f4921ee000bd /Misc
parentd8fdbad881ee3d3bb471757455015dc0a6f5c6b5 (diff)
downloadcpython-5b4b2da55dbc2a439235e8e969309c143320f4fc.zip
cpython-5b4b2da55dbc2a439235e8e969309c143320f4fc.tar.gz
cpython-5b4b2da55dbc2a439235e8e969309c143320f4fc.tar.bz2
Fix the fix for issue #12149: it was incorrect, although it had the side
effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c96321d..8e7465c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@ What's New in Python 2.7.3?
Core and Builtins
-----------------
+- Fix the fix for issue #12149: it was incorrect, although it had the side
+ effect of appearing to resolve the issue. Thanks to Mark Shannon for
+ noticing.
+
- Issue #13546: Fixed an overflow issue that could crash the intepreter when
calling sys.setrecursionlimit((1<<31)-1).