From: Georg Brandl Date: Sun, 18 Jan 2009 10:45:22 +0000 (+0000) Subject: #4974: fix redundant mention of lists and tuples. X-Git-Tag: v2.7a1~2266 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79f722da6c10e059445e241509acea4773f225cc;p=python #4974: fix redundant mention of lists and tuples. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a9c85c214f..f6ec040843 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::