Lines Matching +full:unix +full:- +full:like
1 :mod:`dbm` --- Simple "database" interface
5 :platform: Unix
14 The :mod:`dbm` module provides an interface to the Unix "(n)dbm" library. Dbm
15 objects behave like mappings (dictionaries), except that keys and values are
20 compatibility interface, or the GNU GDBM compatibility interface. On Unix, the
29 Raised on dbm-specific errors, such as I/O errors. :exc:`KeyError` is raised for
30 general mapping errors like specifying an incorrect key.
47 +---------+-------------------------------------------+
52 +---------+-------------------------------------------+
55 +---------+-------------------------------------------+
58 +---------+-------------------------------------------+
61 +---------+-------------------------------------------+
63 The optional *mode* argument is the Unix mode of the file, used only when the
67 In addition to the dictionary-like methods, ``dbm`` objects
79 Generic interface to ``dbm``\ -style databases.