[Python-checkins] cpython (2.7): Minor doc clean-up. (original) (raw)

raymond.hettinger python-checkins at python.org
Sat Mar 19 23:10:12 CET 2011


http://hg.python.org/cpython/rev/3a04bdda1ebf changeset: 68690:3a04bdda1ebf branch: 2.7 parent: 68672:94c158199277 user: Raymond Hettinger <python at rcn.com> date: Sat Mar 19 15:09:00 2011 -0700 summary: Minor doc clean-up.

files: Doc/library/collections.rst

diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -565,9 +565,9 @@ helpful docstring (with typename and field_names) and a helpful :meth:__repr__ method which lists the tuple contents in a name=value format.

@@ -595,7 +595,7 @@ .. doctest:: :options: +NORMALIZE_WHITESPACE

.. attribute:: somenamedtuple._fields

@@ -734,15 +734,15 @@ a fixed-width print format:

 >>> class Point(namedtuple('Point', 'x y')):

@@ -768,7 +768,7 @@ >>> Status.open, Status.pending, Status.closed (0, 1, 2) >>> class Status:

.. seealso::

-- Repository URL: http://hg.python.org/cpython



More information about the Python-checkins mailing list