Home
last modified time | relevance | path

Searched refs:whichdb (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_bsddb185.py11 import whichdb
26 self.assertEqual(whichdb.whichdb(findfile("185test.db")), "bsddb185")
34 ftype = whichdb.whichdb(dbfile)
Dtest_whichdb.py8 import whichdb
52 self.assertEqual(name, whichdb.whichdb(_fname))
57 self.assertEqual(name, whichdb.whichdb(_fname))
/external/python/cpython2/Doc/library/
Dwhichdb.rst1 :mod:`whichdb` --- Guess which DBM module created a database
4 .. module:: whichdb
8 The :mod:`whichdb` module's only function has been put into the :mod:`dbm`
18 .. function:: whichdb(filename)
Danydbm.rst30 If the database file already exists, the :mod:`whichdb` module is used to
120 Module :mod:`whichdb`
Dpersistence.rst26 whichdb.rst
Ddbm.rst84 Module :mod:`whichdb`
Ddumbdbm.rst75 Module :mod:`whichdb`
Ddbhash.rst66 Module :mod:`whichdb`
Dgdbm.rst129 Module :mod:`whichdb`
/external/python/cpython2/Lib/
Danydbm.py70 from whichdb import whichdb
71 result=whichdb(file)
Dwhichdb.py17 def whichdb(filename): function
117 print whichdb(filename) or "UNKNOWN", filename
/external/python/cpython2/Misc/
Dcheatsheet2017 whichdb Guess which db package to use to open a db file.
DHISTORY2273 - The whichdb module can now be run from the command line.
3855 - SF patch 766650: The whichdb module was fixed to recognize dbm files
9139 whichdb -- recognizes dumbdbm format
11638 - In whichdb.py, support byte-swapped dbhash (bsddb) files.
14431 - New module whichdb recognizes dbm, gdbm and bsddb/dbhash files.
DNEWS4530 - Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.