From: Mariatta Date: Wed, 14 Jun 2017 19:07:55 +0000 (-0700) Subject: bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2197) X-Git-Tag: v3.5.4rc1~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3afdca2190201bf6572435226dd3f8668139002;p=thirdparty%2FPython%2Fcpython.git bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2197) (cherry picked from commit 184bd82ba8106785ba22f0d2477dbd08bef821fb) --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index d0aa62e3683e..674cb202118f 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -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::