Lines Matching refs:ndbm
12 :mod:`dbm.gnu` or :mod:`dbm.ndbm`. If none of these modules is installed, the
28 available --- :mod:`dbm.gnu`, :mod:`dbm.ndbm` or :mod:`dbm.dumb` --- should
34 name, such as ``'dbm.ndbm'`` or ``'dbm.gnu'``.
137 file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are incompatible.
236 :mod:`dbm.ndbm` --- Interface based on ndbm
239 .. module:: dbm.ndbm
241 :synopsis: The standard "database" interface, based on ndbm.
243 **Source code:** :source:`Lib/dbm/ndbm.py`
247 The :mod:`dbm.ndbm` module provides an interface to the Unix "(n)dbm" library.
252 This module can be used with the "classic" ndbm interface or the GNU GDBM
258 Raised on :mod:`dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised
264 Name of the ``ndbm`` implementation library used.
269 Open a dbm database and return a ``ndbm`` object. The *filename* argument is the
294 In addition to the dictionary-like methods, ``ndbm`` objects
297 .. method:: ndbm.close()
299 Close the ``ndbm`` database.