summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2014-04-14 20:43:50 (GMT)
committerEric V. Smith <eric@trueblade.com>2014-04-14 20:43:50 (GMT)
commit7ce90743a1948680f409bcc02f56f4f100df1a04 (patch)
tree859eab4c0f9138f16a01a7279105ffac1864cfbd /Misc
parentefeb9da4ae97861101a7582f8eafdaf836e82cd7 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 09c0f40..6f2a8c8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-------