From: Raymond Hettinger Date: Wed, 11 Feb 2009 00:16:12 +0000 (+0000) Subject: Clean-up named tuple docs. X-Git-Tag: v3.0.1~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=323b0461169ca40d550e1ecc6b28e6bbf71b0d88;p=thirdparty%2FPython%2Fcpython.git Clean-up named tuple docs. --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 5cc99e166939..eab4510efc0d 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -614,7 +614,8 @@ function: >>> getattr(p, 'x') 11 -To convert a dictionary to a named tuple, use the double-star-operator [#]_: +To convert a dictionary to a named tuple, use the double-star-operator +(as described in :ref:`tut-unpacking-arguments`): >>> d = {'x': 11, 'y': 22} >>> Point(**d) @@ -662,10 +663,10 @@ and more efficient to use a simple class declaration: >>> class Status: ... open, pending, closed = range(3) -.. rubric:: Footnotes +.. seealso:: -.. [#] For information on the double-star-operator see - :ref:`tut-unpacking-arguments` and :ref:`calls`. + `Named tuple recipe `_ + adapted for Python 2.4.