From: Ned Deily Date: Wed, 14 Dec 2011 23:14:52 +0000 (-0800) Subject: Issue #4625: Add NEWS entry. X-Git-Tag: v3.3.0a1~613 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abbcd0872fc970bb83d8ff5f0f09ca988c172360;p=python Issue #4625: Add NEWS entry. --- abbcd0872fc970bb83d8ff5f0f09ca988c172360 diff --cc Misc/NEWS index a0685d6f23,c996499c53..d757e8407d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -409,21 -93,9 +409,25 @@@ Core and Builtin Library ------- + - 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.