From: Nadeem Vawda Date: Sat, 2 Feb 2013 19:29:39 +0000 (+0100) Subject: Back out fix for issue #13886; it introduced a new bug in interactive readline use. X-Git-Tag: v3.4.0a1~1467 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56265564ff43da395d358fcc28803478892a686b;p=python Back out fix for issue #13886; it introduced a new bug in interactive readline use. --- 56265564ff43da395d358fcc28803478892a686b diff --cc Misc/NEWS index d4fef95b68,e89f83e4b6..a8c047b61e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -15,14 -17,6 +15,10 @@@ Core and Builtin - Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. - - Issue #13886: Fix input() to not strip out input bytes that cannot be decoded - using the locale encoding. Also fix sporadic failures in test_builtin due to - dependence on whether the readline module has previously been imported. - +- Issue #16772: The base argument to the int constructor no longer accepts + floats, or other non-integer objects with an __int__ method. Objects + with an __index__ method are now accepted. + - Issue #10156: In the interpreter's initialization phase, unicode globals are now initialized dynamically as needed.