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 | eff174b8b050a0a12e8de2207009acfc49d0cdbc (patch) | |
tree | 671d535908eb3fbe43347ea6535162a00db0c06c /Doc/library | |
parent | 282d331ec7ed6711738c823fe05878ffca9e3ff8 (diff) | |
download | cpython-eff174b8b050a0a12e8de2207009acfc49d0cdbc.zip cpython-eff174b8b050a0a12e8de2207009acfc49d0cdbc.tar.gz cpython-eff174b8b050a0a12e8de2207009acfc49d0cdbc.tar.bz2 |
#16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.
Diffstat (limited to 'Doc/library')
-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 1a39ca9..9c7509b 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -132,7 +132,7 @@ string formatting behaviors using the same implementation as the built-in 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. |