summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-18 10:38:16 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-18 10:38:16 (GMT)
commit64150bc629c1872c5ca046b5f801052370782df6 (patch)
treeaefaf3f2688321a6deb132a9c9c78d3eeea69fc8 /Doc
parent2c5c79cfc477c0537f296fa3ce7289dbc9a72c83 (diff)
downloadcpython-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.rst2
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.)