diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index caf3e6dcfad..a860a53a719 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -637,7 +637,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) @@ -684,7 +685,7 @@ 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.