[Python-checkins] cpython (3.2): #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.

ezio.melotti python-checkins at python.org
Tue Nov 27 18:19:16 CET 2012


http://hg.python.org/cpython/rev/565c3bbed7d3
changeset:   80603:565c3bbed7d3
branch:      3.2
parent:      80599:4f21a9b7decf
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Tue Nov 27 19:17:57 2012 +0200
summary:
  #16556: Fix inconsistency between kwds and kwargs.  Patch by Taavi Burns.

files:
  Doc/library/string.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/string.rst b/Doc/library/string.rst
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -100,7 +100,7 @@
       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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list