#4984: fix number of types.

This commit is contained in:
Georg Brandl 2009-01-18 10:38:16 +00:00
parent 2c5c79cfc4
commit 64150bc629
1 changed files with 1 additions and 1 deletions

View File

@ -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.)