diff options
author | Eric Smith <eric@trueblade.com> | 2009-02-20 14:02:36 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-02-20 14:02:36 (GMT) |
commit | e9fb6863da50d843ad3e26f81b807320be385adc (patch) | |
tree | 36e0ed3f15f098cae600d29f7d54d9ec259ebda7 /Misc/NEWS | |
parent | 8b8c2df9b176acc9162a9c6e730f7de15b48e4b3 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |