summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 20:28:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 20:28:43 (GMT)
commit8ffe917cee26b83fed4f227c4ed16d4eec15dcf9 (patch)
tree3a2bbef671dcda71bfa36cf5a02d4b68d09cb98a /Misc/NEWS
parentbe1eb1424121682081fed8996e87e2dfd238e7ea (diff)
downloadcpython-8ffe917cee26b83fed4f227c4ed16d4eec15dcf9.zip
cpython-8ffe917cee26b83fed4f227c4ed16d4eec15dcf9.tar.gz
cpython-8ffe917cee26b83fed4f227c4ed16d4eec15dcf9.tar.bz2
Issue #23671: string.Template now allows to specify the "self" parameter as
keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword 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 4cb9ba8..58b74be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #23671: string.Template now allows to specify the "self" parameter as
+ keyword argument. string.Formatter now allows to specify the "self" and
+ the "format_string" parameters as keyword arguments.
+
- Issue #21560: An attempt to write a data of wrong type no longer cause
GzipFile corruption. Original patch by Wolfgang Maier.