From: Benjamin Peterson Date: Mon, 29 Sep 2014 23:11:05 +0000 (-0400) Subject: merge 3.4 (#22519) X-Git-Tag: v3.5.0a1~824 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36a24f3f43c5eab4f02bbff5d7c47accfb509f65;p=python merge 3.4 (#22519) --- 36a24f3f43c5eab4f02bbff5d7c47accfb509f65 diff --cc Misc/NEWS index 3574e420aa,6eb64f9539..4cb4601c3d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,26 -9,10 +10,28 @@@ Release date: TB Core and Builtins ----------------- + - Issue #22519: Fix overflow checking in PyBytes_Repr. + - Issue #22518: Fix integer overflow issues in latin-1 encoding. +- Issue #16324: _charset parameter of MIMEText now also accepts + email.charset.Charset instances. Initial patch by Claude Paroz. + +- Issue #1764286: Fix inspect.getsource() to support decorated functions. + Patch by Claudiu Popa. + +- Issue #18554: os.__all__ includes posix functions. + +- Issue #21391: Use os.path.abspath in the shutil module. + +- Issue #11471: avoid generating a JUMP_FORWARD instruction at the end of + an if-block if there is no else-clause. Original patch by Eugene Toder. + +- Issue #22215: Now ValueError is raised instead of TypeError when str or bytes + argument contains not permitted null character or byte. + +- Issue #22258: Fix the internal function set_inheritable() on Illumos. + Library -------