diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-10 06:38:39 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-10 06:38:39 (GMT) |
commit | c4f4697196e2c489a4e0adfa75484c0f0913b40a (patch) | |
tree | f0c03133201223a648f1747e8845af0ed0714671 | |
parent | f368fbc24e1b3a554068774745761d2876443e9a (diff) | |
download | cpython-c4f4697196e2c489a4e0adfa75484c0f0913b40a.zip cpython-c4f4697196e2c489a4e0adfa75484c0f0913b40a.tar.gz cpython-c4f4697196e2c489a4e0adfa75484c0f0913b40a.tar.bz2 |
Fix the count of datatypes.
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index d570228..a568d44 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -16,7 +16,7 @@ __name__ = '<doctest>' This module implements high-performance container datatypes. Currently, -there are three datatypes, :class:`Counter`, :class:`deque`, :class:`OrderedDict` and +there are four datatypes, :class:`Counter`, :class:`deque`, :class:`OrderedDict` and :class:`defaultdict`, and one datatype factory function, :func:`namedtuple`. The specialized containers provided in this module provide alternatives |