summaryrefslogtreecommitdiffstats
path: root/Doc/library/shelve.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-08 02:49:30 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-08 02:49:30 (GMT)
commit9a46cab6134eb8e575a54cd52d14eb2f679df718 (patch)
tree323b0ada3a15d5f4923fe331cd99963d8dfb18c4 /Doc/library/shelve.rst
parentbd18fd6710a95a4585c9ce17e6ea7040d727d3bc (diff)
downloadcpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.zip
cpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.tar.gz
cpython-9a46cab6134eb8e575a54cd52d14eb2f679df718.tar.bz2
remove some more bsddb references
Diffstat (limited to 'Doc/library/shelve.rst')
-rw-r--r--Doc/library/shelve.rst16
1 files changed, 6 insertions, 10 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index 2dee026..1c35f47 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -55,15 +55,14 @@ Restrictions
.. index::
module: dbm.ndbm
module: dbm.gnu
- module: bsddb
-* The choice of which database package will be used (such as :mod:`dbm.ndbm`,
- :mod:`dbm.gnu` or :mod:`bsddb`) depends on which interface is available. Therefore
- it is not safe to open the database directly using :mod:`dbm`. The database is
- also (unfortunately) subject to the limitations of :mod:`dbm`, if it is used ---
+* The choice of which database package will be used (such as :mod:`dbm.ndbm` or
+ :mod:`dbm.gnu`) depends on which interface is available. Therefore it is not
+ safe to open the database directly using :mod:`dbm`. The database is also
+ (unfortunately) subject to the limitations of :mod:`dbm`, if it is used ---
this means that (the pickled representation of) the objects stored in the
- database should be fairly small, and in rare cases key collisions may cause the
- database to refuse updates.
+ database should be fairly small, and in rare cases key collisions may cause
+ the database to refuse updates.
* Depending on the implementation, closing a persistent dictionary may or may
not be necessary to flush changes to disk. The :meth:`__del__` method of the
@@ -155,9 +154,6 @@ object)::
Module :mod:`dbm`
Generic interface to ``dbm``-style databases.
- Module :mod:`bsddb`
- BSD ``db`` database interface.
-
Module :mod:`pickle`
Object serialization used by :mod:`shelve`.