diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-06-14 18:59:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 18:59:37 (GMT) |
commit | 789f47ebb56283bd0156957121ac2854817b2bf9 (patch) | |
tree | 76168e8b6940ece7b430eb7bf3ac38d2d3c1a3cc /Doc | |
parent | dd47b1944df116cbdbadce3af463c8ccf9699418 (diff) | |
download | cpython-789f47ebb56283bd0156957121ac2854817b2bf9.zip cpython-789f47ebb56283bd0156957121ac2854817b2bf9.tar.gz cpython-789f47ebb56283bd0156957121ac2854817b2bf9.tar.bz2 |
bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2195)
(cherry picked from commit 184bd82ba8106785ba22f0d2477dbd08bef821fb)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 2d51f0c..d6d2056 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -866,7 +866,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:: |