diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 20:28:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 20:28:43 (GMT) |
commit | 8ffe917cee26b83fed4f227c4ed16d4eec15dcf9 (patch) | |
tree | 3a2bbef671dcda71bfa36cf5a02d4b68d09cb98a /Misc/NEWS | |
parent | be1eb1424121682081fed8996e87e2dfd238e7ea (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |