]> granicus.if.org Git - python/commitdiff
#4974: fix redundant mention of lists and tuples.
authorGeorg Brandl <georg@python.org>
Sun, 18 Jan 2009 10:45:22 +0000 (10:45 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 18 Jan 2009 10:45:22 +0000 (10:45 +0000)
Doc/library/stdtypes.rst

index a9c85c214f56e216597b1df3f74b9c21c93340cc..f6ec040843bbf62a7c4e7a9ac748cf0b5f7ae45f 100644 (file)
@@ -632,9 +632,9 @@ Sequence Types --- :class:`str`, :class:`unicode`, :class:`list`, :class:`tuple`
 
 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::