summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-09 17:15:59 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-02-09 17:15:59 (GMT)
commit87ec0855c680689898f8f0097efa18c6cb088dfd (patch)
tree8f27f0a2a534f10deb6c20b78344aaf01567c5fb /Misc
parentae09899fa39bc0b9a4b79b236aa98bd5f1475134 (diff)
downloadcpython-87ec0855c680689898f8f0097efa18c6cb088dfd.zip
cpython-87ec0855c680689898f8f0097efa18c6cb088dfd.tar.gz
cpython-87ec0855c680689898f8f0097efa18c6cb088dfd.tar.bz2
Merged revisions 69459 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69459 | mark.dickinson | 2009-02-09 14:18:43 +0000 (Mon, 09 Feb 2009) | 3 lines Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. It now forces its argument to double before testing for infinity. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7cfddb2..674ef66 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4575: Fix Py_IS_INFINITY macro to work correctly on x87 FPUs:
+ it now forces its argument to double before testing for infinity.
+
- Issue #5137: Make len() correctly raise a TypeError when a __len__ method
returns a non-number type.