diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-27 04:55:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-27 04:55:52 (GMT) |
commit | 9bfe533c6967e2813420d75d4830de3923db0627 (patch) | |
tree | ffbcd3cf8cc8973c899a35f5abbe1d676f221902 /Misc | |
parent | 063606a0d5302d8a5530297a70494a9cad334e83 (diff) | |
download | cpython-9bfe533c6967e2813420d75d4830de3923db0627.zip cpython-9bfe533c6967e2813420d75d4830de3923db0627.tar.gz cpython-9bfe533c6967e2813420d75d4830de3923db0627.tar.bz2 |
SF bug #795506: Wrong handling of string format code for float values.
Adding missing support for '%F'.
Will backport to 2.3.1.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 1? Core and builtins ----------------- +- The % formatting operator now supports '%F' which is equivalent to + '%f'. This has always been documented but never implemented. + - complex(obj) could leak a little memory if obj wasn't a string or number. |