diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-08 02:49:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-08 02:49:30 (GMT) |
commit | 9a46cab6134eb8e575a54cd52d14eb2f679df718 (patch) | |
tree | 323b0ada3a15d5f4923fe331cd99963d8dfb18c4 /Doc/library/collections.rst | |
parent | bd18fd6710a95a4585c9ce17e6ea7040d727d3bc (diff) | |
download | cpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.zip cpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.tar.gz cpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.tar.bz2 |
remove some more bsddb references
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r-- | Doc/library/collections.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index d2d4f47..94b6726 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -23,9 +23,6 @@ be useful when inheriting directly from :class:`dict` or The specialized containers provided in this module provide alternatives to Python's general purpose built-in containers, :class:`dict`, :class:`list`, :class:`set`, and :class:`tuple`. -Besides the containers provided here, the optional :mod:`bsddb` -module offers the ability to create in-memory or file based ordered -dictionaries with string keys using the :meth:`bsddb.btopen` method. In addition to containers, the collections module provides some ABCs (abstract base classes) that can be used to test whether a class |