Commit eff174b8 authored by Ezio Melotti's avatar Ezio Melotti

#16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.

parent 282d331e
...@@ -132,7 +132,7 @@ string formatting behaviors using the same implementation as the built-in ...@@ -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 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 separate function for cases where you want to pass in a predefined
dictionary of arguments, rather than unpacking and repacking the 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 syntax. :meth:`vformat` does the work of breaking up the format string
into character data and replacement fields. It calls the various into character data and replacement fields. It calls the various
methods described below. methods described below.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment