diff options
author | Georg Brandl <georg@python.org> | 2009-01-18 10:38:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-18 10:38:16 (GMT) |
commit | 64150bc629c1872c5ca046b5f801052370782df6 (patch) | |
tree | aefaf3f2688321a6deb132a9c9c78d3eeea69fc8 /Doc | |
parent | 2c5c79cfc477c0537f296fa3ce7289dbc9a72c83 (diff) | |
download | cpython-64150bc629c1872c5ca046b5f801052370782df6.zip cpython-64150bc629c1872c5ca046b5f801052370782df6.tar.gz cpython-64150bc629c1872c5ca046b5f801052370782df6.tar.bz2 |
#4984: fix number of types.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 2ea9a38..577d1a5 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -594,7 +594,7 @@ generator object) supplying the :meth:`__iter__` and :meth:`__next__` methods. Sequence Types --- :class:`str`, :class:`bytes`, :class:`bytearray`, :class:`list`, :class:`tuple`, :class:`range` ================================================================================================================== -There are five sequence types: strings, byte sequences, byte arrays, lists, +There are six sequence types: strings, byte sequences, byte arrays, lists, tuples, and range objects. (For other containers see the built-in :class:`dict`, :class:`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` module.) |