Lines Matching defs:ndbm
8 The returned object is a dbm.gnu, dbm.ndbm or dbm.dumb object, dependent on the
41 _names = ['dbm.gnu', 'dbm.ndbm', 'dbm.dumb']
48 from dbm import ndbm
50 ndbm = None
105 - the name of the dbm submodule (e.g. "ndbm" or "gnu") if recognized.
111 # Check for ndbm first -- this has a .pag and a .dir file
118 return "dbm.ndbm"
128 if ndbm is not None:
129 d = ndbm.open(filename)
131 return "dbm.ndbm"