From: Zachary Ware Date: Mon, 18 May 2015 05:49:15 +0000 (-0500) Subject: Closes #21931: Merge with 3.4 X-Git-Tag: v3.5.0b1~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4e6030542eaf684a384f27a741d877c05b17b33;p=thirdparty%2FPython%2Fcpython.git Closes #21931: Merge with 3.4 --- f4e6030542eaf684a384f27a741d877c05b17b33 diff --cc Misc/NEWS index 850ec5029156,ed646ada53de..b51a9f208711 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -47,37 -48,10 +47,41 @@@ Core and Builtin Library ------- + - Issue #21931: msilib.FCICreate() now raises TypeError in the case of a bad + argument instead of a ValueError with a bogus FCI error number. + Patch by Jeffrey Armstrong. + +- Issue #13866: *quote_via* argument added to urllib.parse.urlencode. + +- Issue #20098: New mangle_from_ policy option for email, default True + for compat32, but False for all other policies. + +- Issue #24211: The email library now supports RFC 6532: it can generate + headers using utf-8 instead of encoded words. + +- Issue #16314: Added support for the LZMA compression in distutils. + +- Issue #21804: poplib now supports RFC 6856 (UTF8). + +- Issue #18682: Optimized pprint functions for builtin scalar types. + +- Issue #22027: smtplib now supports RFC 6531 (SMTPUTF8). + +- Issue #23488: Random generator objects now consume 2x less memory on 64-bit. + +- Issue #1322: platform.dist() and platform.linux_distribution() functions are + now deprecated. Initial patch by Vajrasky Kok. + +- Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is + deprecated. Based on patch by Mark Dickinson. + +- Issue #24064: Property() docstrings are now writeable. + (Patch by Berker Peksag.) + +- Issue #22681: Added support for the koi8_t encoding. + +- Issue #22682: Added support for the kz1048 encoding. + - Issue #23796: peak and read1 methods of BufferedReader now raise ValueError if they called on a closed object. Patch by John Hergenroeder.