[Python-checkins] r68720 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sun Jan 18 11:45:22 CET 2009


Author: georg.brandl
Date: Sun Jan 18 11:45:22 2009
New Revision: 68720

Log:
#4974: fix redundant mention of lists and tuples.

Modified:
   python/trunk/Doc/library/stdtypes.rst

Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Sun Jan 18 11:45:22 2009
@@ -632,9 +632,9 @@
 
 There are six sequence types: strings, Unicode strings, lists, tuples, buffers,
 and xrange objects.
-(For other containers see the built in :class:`dict`, :class:`list`,
-:class:`set`, and :class:`tuple` classes, and the :mod:`collections`
-module.)
+
+For other containers see the built in :class:`dict` and :class:`set` classes,
+and the :mod:`collections` module.
 
 
 .. index::


More information about the Python-checkins mailing list