]> granicus.if.org Git - python/commitdiff
bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2197)
authorMariatta <Mariatta@users.noreply.github.com>
Wed, 14 Jun 2017 19:07:55 +0000 (12:07 -0700)
committerGitHub <noreply@github.com>
Wed, 14 Jun 2017 19:07:55 +0000 (12:07 -0700)
(cherry picked from commit 184bd82ba8106785ba22f0d2477dbd08bef821fb)

Doc/library/collections.rst

index d0aa62e3683edf84019458729b9de653572a8b78..674cb202118f0d0eae1114e4735643c76d793b14 100644 (file)
@@ -855,7 +855,7 @@ field names, the method and attribute names start with an underscore.
     .. versionchanged:: 3.1
         Returns an :class:`OrderedDict` instead of a regular :class:`dict`.
 
-.. method:: somenamedtuple._replace(kwargs)
+.. method:: somenamedtuple._replace(**kwargs)
 
     Return a new instance of the named tuple replacing specified fields with new
     values::