summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-02-20 14:02:36 (GMT)
committerEric Smith <eric@trueblade.com>2009-02-20 14:02:36 (GMT)
commite9fb6863da50d843ad3e26f81b807320be385adc (patch)
tree36e0ed3f15f098cae600d29f7d54d9ec259ebda7 /Misc/NEWS
parent8b8c2df9b176acc9162a9c6e730f7de15b48e4b3 (diff)
downloadcpython-e9fb6863da50d843ad3e26f81b807320be385adc.zip
cpython-e9fb6863da50d843ad3e26f81b807320be385adc.tar.gz
cpython-e9fb6863da50d843ad3e26f81b807320be385adc.tar.bz2
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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a65384..ab5f3ed 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 1
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.