From: R David Murray Date: Thu, 13 Aug 2015 14:04:21 +0000 (-0400) Subject: Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict. X-Git-Tag: v3.6.0a1~1797^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c77088d055ea23e5e28648864b62421c7eae20c5;p=python Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict. --- c77088d055ea23e5e28648864b62421c7eae20c5 diff --cc Misc/NEWS index 81c18d7bff,16b33bc272..0376c4c8fc --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,43 -10,72 +10,46 @@@ Release date: 2015-08-2 Core and Builtins ----------------- + - Issue #21167: NAN operations are now handled correctly when python is + compiled with ICC even if -fp-model strict is not specified. + -- Issue #4395: Better testing and documentation of binary operators. - Patch by Martin Panter. +Library +------- -- Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray - object now always allocates place for trailing null byte and it's buffer now - is always null-terminated. +- Issue #24847: Fixes tcltk installer layout of VC runtime DLL -- Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), - PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() - to check for and handle errors correctly. +- Issue #24839: platform._syscmd_ver raises DeprecationWarning -- Issue #24257: Fixed system error in the comparison of faked - types.SimpleNamespace. +Documentation +------------- -- Issue #22939: Fixed integer overflow in iterator object. Patch by - Clement Rouault. +- Issue #23725: Overhaul tempfile docs. Note deprecated status of mktemp. + Patch from Zbigniew Jędrzejewski-Szmek. -- Issue #23985: Fix a possible buffer overrun when deleting a slice from - the front of a bytearray and then appending some other bytes data. +What's New in Python 3.5.0 release candidate 1? +=============================================== -- Issue #24102: Fixed exception type checking in standard error handlers. +Release date: 2015-08-09 -- Issue #23757: PySequence_Tuple() incorrectly called the concrete list API - when the data was a list subclass. +Core and Builtins +----------------- -- Issue #24407: Fix crash when dict is mutated while being updated. +- Issue #24667: Resize odict in all cases that the underlying dict resizes. -- Issue #24096: Make warnings.warn_explicit more robust against mutation of the - warnings.filters list. +Library +------- -- Issue #23996: Avoid a crash when a delegated generator raises an - unnormalized StopIteration exception. Patch by Stefan Behnel. +- Issue #24824: Signatures of codecs.encode() and codecs.decode() now are + compatible with pydoc. -- Issue #24022: Fix tokenizer crash when processing undecodable source code. +- Issue #24634: Importing uuid should not try to load libc on Windows -- Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted - while it is holding a lock to a buffered I/O object, and the main thread - tries to use the same I/O object (typically stdout or stderr). A fatal - error is emitted instead. +- Issue #24798: _msvccompiler.py doesn't properly support manifests -- Issue #22977: Fixed formatting Windows error messages on Wine. +- Issue #4395: Better testing and documentation of binary operators. Patch by Martin Panter. -- Issue #23803: Fixed str.partition() and str.rpartition() when a separator - is wider then partitioned string. - -- Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. - -- Issue #23629: Fix the default __sizeof__ implementation for variable-sized - objects. - -- Issue #24044: Fix possible null pointer dereference in list.sort in out of - memory conditions. - -- Issue #21354: PyCFunction_New function is exposed by python DLL again. - -- Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation. - Patch by Gustavo J. A. M. Carneiro. - -Library -------- - -- Issue #23888: Handle fractional time in cookie expiry. Patch by ssh. +- Issue #23973: Update typing.py from GitHub repo. - Issue #23004: mock_open() now reads binary data correctly when the type of read_data is bytes. Initial patch by Aaron Hill.