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/dbm.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/dbm.rst')
-rw-r--r-- | Doc/library/dbm.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/dbm.rst b/Doc/library/dbm.rst index 09069e8..932c2a7 100644 --- a/Doc/library/dbm.rst +++ b/Doc/library/dbm.rst @@ -268,9 +268,9 @@ to simplify building this module. database modules. The :mod:`dbm.dumb` module provides a persistent dictionary-like interface which -is written entirely in Python. Unlike other modules such as :mod:`gdbm` and -:mod:`bsddb`, no external library is required. As with other persistent -mappings, the keys and values must always be strings. +is written entirely in Python. Unlike other modules such as :mod:`gdbm` no +external library is required. As with other persistent mappings, the keys and +values must always be strings. The module defines the following: |