Lines Matching +full:style +full:- +full:mod
1 :mod:`anydbm` --- Generic access to DBM-style databases
5 :synopsis: Generic interface to DBM-style database modules.
9 The :mod:`anydbm` module has been renamed to :mod:`dbm` in Python 3. The
20 :mod:`anydbm` is a generic interface to variants of the DBM database ---
21 :mod:`dbhash` (requires :mod:`bsddb`), :mod:`gdbm`, or :mod:`dbm`. If none of
22 these modules is installed, the slow-but-simple implementation in module
23 :mod:`dumbdbm` will be used.
30 If the database file already exists, the :mod:`whichdb` module is used to
36 +---------+-------------------------------------------+
41 +---------+-------------------------------------------+
44 +---------+-------------------------------------------+
47 +---------+-------------------------------------------+
50 +---------+-------------------------------------------+
63 item --- the latter is used when :exc:`anydbm.error` is raised.
87 # Storing a non-string key or value will raise an exception (most
95 In addition to the dictionary-like methods, ``anydbm`` objects
105 Module :mod:`dbhash`
108 Module :mod:`dbm`
111 Module :mod:`dumbdbm`
114 Module :mod:`gdbm`
117 Module :mod:`shelve`
120 Module :mod:`whichdb`