Searched refs:whichdb (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_bsddb185.py | 11 import whichdb 26 self.assertEqual(whichdb.whichdb(findfile("185test.db")), "bsddb185") 34 ftype = whichdb.whichdb(dbfile)
|
D | test_whichdb.py | 8 import whichdb 52 self.assertEqual(name, whichdb.whichdb(_fname)) 57 self.assertEqual(name, whichdb.whichdb(_fname))
|
/external/python/cpython2/Doc/library/ |
D | whichdb.rst | 1 :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)
|
D | anydbm.rst | 30 If the database file already exists, the :mod:`whichdb` module is used to 120 Module :mod:`whichdb`
|
D | persistence.rst | 26 whichdb.rst
|
D | dbm.rst | 84 Module :mod:`whichdb`
|
D | dumbdbm.rst | 75 Module :mod:`whichdb`
|
D | dbhash.rst | 66 Module :mod:`whichdb`
|
D | gdbm.rst | 129 Module :mod:`whichdb`
|
/external/python/cpython2/Lib/ |
D | anydbm.py | 70 from whichdb import whichdb 71 result=whichdb(file)
|
D | whichdb.py | 17 def whichdb(filename): function 117 print whichdb(filename) or "UNKNOWN", filename
|
/external/python/cpython3/Lib/dbm/ |
D | __init__.py | 78 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/ |
D | test_dbm.py | 156 self.assertEqual(name, self.dbm.whichdb(_fname)) 165 self.assertEqual(name, self.dbm.whichdb(_fname)) 173 self.assertIsNone(self.dbm.whichdb(db_file[:-3]))
|
D | pickletester.py | 986 self.assertIs(self.loads(pickled), dbm.whichdb) 2421 (dbm.whichdb, 'whichdb', 'whichdb'),
|
/external/python/cpython3/Doc/library/ |
D | dbm.rst | 25 .. function:: whichdb(filename) 41 If the database file already exists, the :func:`whichdb` function is used to
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.3rc1.rst | 1005 whichdb should recognize gdbm 1.9 magic numbers.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 607 :mod:`dumbdbm`, :mod:`gdbm`, :mod:`whichdb`).
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 2017 whichdb Guess which db package to use to open a db file.
|
D | HISTORY | 2273 - 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/ |
D | HISTORY | 8666 - 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.
|