summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2015-08-13 13:58:07 (GMT)
committerR David Murray <rdmurray@bitdance.com>2015-08-13 13:58:07 (GMT)
commitedbc28ce81f46d042f9d5ddf9c5bc8cecebc715a (patch)
tree9cbc21722e0c22f7e6909a502f34a99d6c5612e1 /Misc
parent9632ea2f26831ae3bbf41ca570d6e138c2f13656 (diff)
downloadcpython-edbc28ce81f46d042f9d5ddf9c5bc8cecebc715a.zip
cpython-edbc28ce81f46d042f9d5ddf9c5bc8cecebc715a.tar.gz
cpython-edbc28ce81f46d042f9d5ddf9c5bc8cecebc715a.tar.bz2
#21167: Fix definition of NAN when ICC used without -fp-model strict.
Patch from Chris Hogan of Intel, reviewed by Mark Dickinson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 93b2a0b..f5868f9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -583,6 +583,7 @@ Gregor Hoffleit
Chris Hoffman
Stefan Hoffmeister
Albert Hofkamp
+Chris Hogan
Tomas Hoger
Jonathan Hogg
Kamilla Holanda
diff --git a/Misc/NEWS b/Misc/NEWS
index e2da905..16b33bc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
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.