From: Benjamin Peterson Date: Sun, 14 Aug 2016 00:22:18 +0000 (-0700) Subject: merge 3.5 (closes #27758) X-Git-Tag: v3.6.0a4~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7bc44302a0826d68073aefa7522ac7871959e949;p=thirdparty%2FPython%2Fcpython.git merge 3.5 (closes #27758) --- 7bc44302a0826d68073aefa7522ac7871959e949 diff --cc Misc/NEWS index 6cd1b1c3cada,ed580d1c003e..53b1838d4f02 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -43,21 -34,12 +43,24 @@@ Core and Builtin Library ------- +- Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor() + the ability to specify a thread name prefix. + - Issue #26750: unittest.mock.create_autospec() now works properly for - subclasses of property() and other data descriptors. + subclasses of property() and other data descriptors. Removes the never + publicly used, never documented unittest.mock.DescriptorTypes tuple. + +- Issue #26754: Undocumented support of general bytes-like objects + as path in compile() and similar functions is now deprecated. + +- Issue #26800: Undocumented support of general bytes-like objects + as paths in os functions is now deprecated. + +- Issue #27661: Added tzinfo keyword argument to datetime.combine. + - Issue #27758: Fix possible integer overflow in the _csv module for large record + lengths. + - Issue #27568: Prevent HTTPoxy attack (CVE-2016-1000110). Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode.