Merged revisions 72564 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72564 | mark.dickinson | 2009-05-11 16:33:08 +0100 (Mon, 11 May 2009) | 2 lines
Issue #5981: Fix some float.fromhex bugs related to inf and nan handling.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index a068c5e..43e6024 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@
Core and Builtins
-----------------
+- Issue #5981: Fix two minor inf/nan issues in float.fromhex: (1) inf
+ and nan strings with trailing whitespace were incorrectly rejected
+ and (2) the interpretation of fromhex('-nan') didn't match that of
+ float('-nan').
+
- Issue #5890: in subclasses of 'property' the __doc__ attribute was
shadowed by classtype's, even if it was None. property now
inserts the __doc__ into the subclass instance __dict__.