Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions Doc/library/dbm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ the Oracle Berkeley DB.
the database file. However, :mod:`dbm.sqlite3`, :mod:`dbm.gnu` and :mod:`dbm.dumb`
provide a :meth:`!reorganize` method that can be used for this purpose.

.. seealso::

Module :mod:`shelve`
Persistence module which stores non-string data.

.. exception:: error

Expand Down Expand Up @@ -142,12 +146,6 @@ then prints out the contents of the database::
# db is automatically closed when leaving the with statement.


.. seealso::

Module :mod:`shelve`
Persistence module which stores non-string data.


The individual submodules are described in the following sections.

:mod:`dbm.sqlite3` --- SQLite backend for dbm
Expand Down
Loading