Skip to content
Closed
Changes from 1 commit
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
13 changes: 7 additions & 6 deletions Doc/library/dbm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There
is a `third party interface <https://www.jcea.es/programacion/pybsddb.htm>`_ to
the Oracle Berkeley DB.


.. seealso::

Module :mod:`shelve`
Persistence module that can store keys and values of types other than bytes.


.. exception:: error

A tuple containing the exceptions that can be raised by each of the supported
Expand Down Expand Up @@ -136,12 +143,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