From: Benjamin Peterson Date: Sun, 18 Jul 2010 14:26:34 +0000 (+0000) Subject: Merged revisions 82952 via svnmerge from X-Git-Tag: v2.7.1rc1~586 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=682f60352e782dae1c01e8b77a6150ef5669ee74;p=python Merged revisions 82952 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82952 | benjamin.peterson | 2010-07-18 09:23:36 -0500 (Sun, 18 Jul 2010) | 1 line use classmethod ........ --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index dd3e5a49f7..14539be6cc 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -787,7 +787,7 @@ In addition to the methods inherited from tuples, named tuples support three additional methods and one attribute. To prevent conflicts with field names, the method and attribute names start with an underscore. -.. method:: somenamedtuple._make(iterable) +.. classmethod:: somenamedtuple._make(iterable) Class method that makes a new instance from an existing sequence or iterable.