From: Ezio Melotti Date: Tue, 27 Nov 2012 17:17:57 +0000 (+0200) Subject: #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns. X-Git-Tag: v2.7.4rc1~347 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eff174b8b050a0a12e8de2207009acfc49d0cdbc;p=thirdparty%2FPython%2Fcpython.git #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns. --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 1a39ca931324..9c7509bb4cb3 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.