diff --git a/Doc/library/dbm.rst b/Doc/library/dbm.rst index 39e287b15214e4..7ee6e888278197 100644 --- a/Doc/library/dbm.rst +++ b/Doc/library/dbm.rst @@ -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 @@ -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