diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-27 17:17:57 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-27 17:17:57 (GMT) |
commit | 28c88f48f9dd6943a20758e733806cbaf735e139 (patch) | |
tree | ce0e9c9745f42cace4083eaa2a8d8327aed4486f /Doc | |
parent | 8c523704031ffa5c4b55e2954aac11ee548ab5dc (diff) | |
download | cpython-28c88f48f9dd6943a20758e733806cbaf735e139.zip cpython-28c88f48f9dd6943a20758e733806cbaf735e139.tar.gz cpython-28c88f48f9dd6943a20758e733806cbaf735e139.tar.bz2 |
#16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 79d4e3f..d821339 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -100,7 +100,7 @@ implementation as the built-in :meth:`format` method. This function does the actual work of formatting. It is exposed as a separate function for cases where you want to pass in a predefined dictionary of arguments, rather than unpacking and repacking the - dictionary as individual arguments using the ``*args`` and ``**kwds`` + dictionary as individual arguments using the ``*args`` and ``**kwargs`` syntax. :meth:`vformat` does the work of breaking up the format string into character data and replacement fields. It calls the various methods described below. |