summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-18 10:45:22 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-18 10:45:22 (GMT)
commit79f722da6c10e059445e241509acea4773f225cc (patch)
tree7e3f3764928e9811399d511a317d390d0597adb3 /Doc
parent6c81b54cc4b9490dc54a2d3cf72873f49f0c6eba (diff)
downloadcpython-79f722da6c10e059445e241509acea4773f225cc.zip
cpython-79f722da6c10e059445e241509acea4773f225cc.tar.gz
cpython-79f722da6c10e059445e241509acea4773f225cc.tar.bz2
#4974: fix redundant mention of lists and tuples.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a9c85c2..f6ec040 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -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::