From: Meador Inge Date: Thu, 15 Dec 2011 04:39:28 +0000 (-0600) Subject: Issue #13591: Moving the NEWS line to the right release. X-Git-Tag: v3.3.0a1~611 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c2f9874280006d0567797ba49e6575edcd9a56a3;p=thirdparty%2FPython%2Fcpython.git Issue #13591: Moving the NEWS line to the right release. --- c2f9874280006d0567797ba49e6575edcd9a56a3 diff --cc Misc/NEWS index 4cc0a4b49d51,ac3a130c2401..0977d5575d44 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -409,25 -93,12 +409,28 @@@ Core and Builtin Library ------- + - Issue #13591: A bug in importlib has been fixed that caused import_module + to load a module twice. + - Issue #4625: If IDLE cannot write to its recent file or breakpoint files, display a message popup and continue rather than crash. - (original patch by Roger Serwy) + (original patch by Roger Serwy) + +- Issue #13449 sched.scheduler.run() method has a new "blocking" parameter which + when set to False makes run() execute the scheduled events due to expire + soonest (if any) and then return. Patch by Giampaolo Rodolà. + +- Issue #8684 sched.scheduler class can be safely used in multi-threaded + environments. Patch by Josiah Carlson and Giampaolo Rodolà. + +- Alias resource.error to OSError ala PEP 3151. + +- Issue #5689: Add support for lzma compression to the tarfile module. + +- Issue #13248: Turn 3.2's PendingDeprecationWarning into 3.3's + DeprecationWarning. It covers 'cgi.escape', 'importlib.abc.PyLoader', + 'importlib.abc.PyPycLoader', 'nntplib.NNTP.xgtitle', 'nntplib.NNTP.xpath', + and private attributes of 'smtpd.SMTPChannel'. - Issue #5905: time.strftime() is now using the locale encoding, instead of UTF-8, if the wcsftime() function is not available.