summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-15 21:34:27 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-15 21:34:27 (GMT)
commit2808d3c41847ba1f8e07ee678742b6f12528face (patch)
treece0ca8f56fa2bcba75bae34c0eca30cb54505dd4 /Misc
parent50a14695573807aebdeea1c7c057b816b1bbd4a3 (diff)
downloadcpython-2808d3c41847ba1f8e07ee678742b6f12528face.zip
cpython-2808d3c41847ba1f8e07ee678742b6f12528face.tar.gz
cpython-2808d3c41847ba1f8e07ee678742b6f12528face.tar.bz2
Merged revisions 71627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71627 | benjamin.peterson | 2009-04-15 16:26:36 -0500 (Wed, 15 Apr 2009) | 4 lines call __float__ on str subclasses #5759 tests by R. David Murray ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cf07f86..866a5b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.1 beta 1?
Core and Builtins
-----------------
+- Issue #5759: float() didn't call __float__ on str subclasses.
+
- The string.maketrans() function is deprecated; there is a new static method
maketrans() on the bytes and bytearray classes. This removes confusion about
the types string.maketrans() is supposed to work with, and mirrors the