diff options
author | Eric V. Smith <eric@trueblade.com> | 2014-04-14 20:43:50 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2014-04-14 20:43:50 (GMT) |
commit | 7ce90743a1948680f409bcc02f56f4f100df1a04 (patch) | |
tree | 859eab4c0f9138f16a01a7279105ffac1864cfbd /Misc | |
parent | efeb9da4ae97861101a7582f8eafdaf836e82cd7 (diff) | |
download | cpython-7ce90743a1948680f409bcc02f56f4f100df1a04.zip cpython-7ce90743a1948680f409bcc02f56f4f100df1a04.tar.gz cpython-7ce90743a1948680f409bcc02f56f4f100df1a04.tar.bz2 |
Issue #13598: Add auto-numbering of replacement fields to string.Formatter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ Core and Builtins - Issue #12546: Allow \x00 to be used as a fill character when using str, int, float, and complex __format__ methods. +- Issue #13598: Modify string.Formatter to support auto-numbering of + replacement fields. It now matches the behavior of str.format() in + this regard. + Library ------- |