summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-05-09 16:14:15 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-05-09 16:14:15 (GMT)
commite81c3760807215a65a69c20701631ee0b8ad774b (patch)
treeca831b75c2baf8d6bd7b69d4675c039bd4f93b8c /Misc
parent17433d206c1a705c8dad9a52d33c5546dc069e42 (diff)
downloadcpython-e81c3760807215a65a69c20701631ee0b8ad774b.zip
cpython-e81c3760807215a65a69c20701631ee0b8ad774b.tar.gz
cpython-e81c3760807215a65a69c20701631ee0b8ad774b.tar.bz2
Issue #2801: fix bug in float.is_integer where ValueError
could be incorrectly raised. This is a backport of the Py3k fix in r62939. (Should really have been fixed in the trunk first and svnmerged into py3k.)
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 58fd955..12522db 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 beta 1?
Core and Builtins
-----------------
+- Issue #2801: fix bug in the float.is_integer method where a ValueError
+ was sometimes incorrectly raised.
+
- Issue #2790: sys.flags was not properly exposing its bytes_warning attribute.
Extension Modules