From: Antoine Pitrou Date: Sat, 4 May 2013 18:46:19 +0000 (+0200) Subject: Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpr... X-Git-Tag: v3.4.0a1~805 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df6931dbbcf3d0a33f5469e63c9944577a7c7382;p=python Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. --- df6931dbbcf3d0a33f5469e63c9944577a7c7382 diff --cc Misc/NEWS index ec5ff6cfb7,6a3f17c9b5..64b1efcf6a --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,15 -12,9 +10,18 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #17408: Avoid using an obsolete instance of the copyreg module when + the interpreter is shutdown and then started again. + +- Issue #5845: Enable tab-completion in the interactive interpreter by + default, thanks to a new sys.__interactivehook__. + +- Issue #17115,17116: Module initialization now includes setting __package__ and + __loader__ attributes to None. + +- Issue #17853: Ensure locals of a class that shadow free variables always win + over the closures. + - Issue #17863: In the interactive console, don't loop forever if the encoding can't be fetched from stdin.