Home
last modified time | relevance | path

Searched refs:whichdb (Results 1 – 20 of 20) 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/cpython3/Lib/dbm/
D__init__.py78 result = whichdb(file) if 'n' not in flag else None
97 def whichdb(filename): function
188 print(whichdb(filename) or "UNKNOWN", filename)
/external/python/cpython3/Lib/test/
Dtest_dbm.py156 self.assertEqual(name, self.dbm.whichdb(_fname))
165 self.assertEqual(name, self.dbm.whichdb(_fname))
173 self.assertIsNone(self.dbm.whichdb(db_file[:-3]))
Dpickletester.py986 self.assertIs(self.loads(pickled), dbm.whichdb)
2421 (dbm.whichdb, 'whichdb', 'whichdb'),
/external/python/cpython3/Doc/library/
Ddbm.rst25 .. function:: whichdb(filename)
41 If the database file already exists, the :func:`whichdb` function is used to
/external/python/cpython2/Misc/NEWS.d/
D2.7.3rc1.rst1005 whichdb should recognize gdbm 1.9 magic numbers.
/external/python/cpython3/Doc/whatsnew/
D3.0.rst607 :mod:`dumbdbm`, :mod:`gdbm`, :mod:`whichdb`).
/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.
/external/python/cpython3/Misc/
DHISTORY8666 - Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.
16730 ``anydbm`` and ``whichdb`` in its ``__init__.py``, and having
19657 - The whichdb module can now be run from the command line.
21239 - SF patch 766650: The whichdb module was fixed to recognize dbm files
26518 whichdb -- recognizes dumbdbm format
29017 - In whichdb.py, support byte-swapped dbhash (bsddb) files.
31810 - New module whichdb recognizes dbm, gdbm and bsddb/dbhash files.