From: Jason R. Coombs Date: Fri, 2 Sep 2016 02:10:09 +0000 (-0400) Subject: Issue #12885: Merge with 3.5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=742d32ac63cda89a605472983ab95203b773f0f1;p=python Issue #12885: Merge with 3.5 --- 742d32ac63cda89a605472983ab95203b773f0f1 diff --cc Misc/NEWS index b5cb9e8501,823074597f..be46c6b407 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -57,20 -26,31 +57,20 @@@ Core and Builtin In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang. -- Issue #27419: Standard __import__() no longer look up "__import__" in globals - or builtins for importing submodules or "from import". Fixed handling an - error of non-string package name. - -- Issue #27083: Respect the PYTHONCASEOK environment variable under Windows. - -- Issue #27514: Make having too many statically nested blocks a SyntaxError - instead of SystemError. - -- Issue #27473: Fixed possible integer overflow in bytes and bytearray - concatenations. Patch by Xiang Zhang. - -- Issue #27507: Add integer overflow check in bytearray.extend(). Patch by - Xiang Zhang. +Library +------- -- Issue #27581: Don't rely on wrapping for overflow check in - PySequence_Tuple(). Patch by Xiang Zhang. +- Issue #27919: Deprecated ``extra_path`` distribution option in distutils + packaging. -- Issue #27443: __length_hint__() of bytearray iterators no longer return a - negative integer for a resized bytearray. +- Issue #23229: Add new ``cmath`` constants: ``cmath.inf`` and ``cmath.nan`` to + match ``math.inf`` and ``math.nan``, and also ``cmath.infj`` and + ``cmath.nanj`` to match the format used by complex repr. -Library -------- +- Issue #27842: The csv.DictReader now returns rows of type OrderedDict. + (Contributed by Steve Holden.) - - Issue #12285: Fix error when distutils encounters symlink. + - Issue #12885: Fix error when distutils encounters symlink. - Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang.