From: Nadeem Vawda Date: Sat, 2 Feb 2013 19:25:19 +0000 (+0100) Subject: Back out fix for issue #13886; it introduced a new bug in interactive readline use. X-Git-Tag: v3.3.1rc1~244 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c27bcbf86316fd45180a8b881c55ed3ac7f9fa50;p=python Back out fix for issue #13886; it introduced a new bug in interactive readline use. --- c27bcbf86316fd45180a8b881c55ed3ac7f9fa50 diff --cc Misc/NEWS index 77c4f1d54a,420056ed3a..e89f83e4b6 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -12,15 -10,8 +12,11 @@@ What's New in Python 3.3.1 Core and Builtins ----------------- +- Issue #17098: All modules now have __loader__ set even if they pre-exist the + bootstrapping of importlib. + - 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 #10156: In the interpreter's initialization phase, unicode globals are now initialized dynamically as needed.