From: R David Murray Date: Thu, 13 Aug 2015 14:07:54 +0000 (-0400) Subject: Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict. X-Git-Tag: v3.6.0a1~1797 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=587748e2717bd481b8becf6bd23a80ff425550af;p=python Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict. --- 587748e2717bd481b8becf6bd23a80ff425550af diff --cc Misc/NEWS index 7a5c87ac94,0376c4c8fc..a8bc4536bd --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,29 +10,12 @@@ Release date: XXXX-XX-X 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. + -Library -------- - -- Issue #24847: Fixes tcltk installer layout of VC runtime DLL - -- Issue #24839: platform._syscmd_ver raises DeprecationWarning - -Documentation -------------- - -- Issue #23725: Overhaul tempfile docs. Note deprecated status of mktemp. - Patch from Zbigniew Jędrzejewski-Szmek. - -What's New in Python 3.5.0 release candidate 1? -=============================================== - -Release date: 2015-08-09 - -Core and Builtins ------------------ +- Issue #9232: Modify Python's grammar to allow trailing commas in the + argument list of a function declaration. For example, "def f(*, a = + 3,): pass" is now legal. Patch from Mark Dickinson. - Issue #24667: Resize odict in all cases that the underlying dict resizes.