summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-02-20 14:07:55 (GMT)
committerEric Smith <eric@trueblade.com>2009-02-20 14:07:55 (GMT)
commit1718b47328b7d228edbc395ef44fbb380b8c8ed8 (patch)
tree7f1f605ba023f0e116763957cdc1714c9f5113d3 /Misc
parentb2d412117cc075328603f4f8a3b901cf286a9280 (diff)
downloadcpython-1718b47328b7d228edbc395ef44fbb380b8c8ed8.zip
cpython-1718b47328b7d228edbc395ef44fbb380b8c8ed8.tar.gz
cpython-1718b47328b7d228edbc395ef44fbb380b8c8ed8.tar.bz2
Merged revisions 69806 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69806 | eric.smith | 2009-02-20 09:02:36 -0500 (Fri, 20 Feb 2009) | 1 line Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f95da43..97688f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.6.2
Core and Builtins
-----------------
+- Issue #5247: Improve error message when unknown format codes are
+ used when using str.format() with str, unicode, long, int, and
+ float arguments.
+
- Running Python with the -3 option now also warns about classic division
for ints and longs.