Searched refs:ndbm (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_dbm_ndbm.py | 5 import dbm.ndbm 6 from dbm.ndbm import error 12 self.d = dbm.ndbm.open(self.filename, 'c') 20 self.d = dbm.ndbm.open(self.filename, 'c') 40 if dbm.ndbm.library == 'Berkeley DB': 43 self.d = dbm.ndbm.open(self.filename, 'c') 56 self.d = dbm.ndbm.open(self.filename, mode) 62 with dbm.ndbm.open(self.filename, 'c') as db: 65 with dbm.ndbm.open(self.filename, 'r') as db: 68 with self.assertRaises(dbm.ndbm.error) as cm: [all …]
|
D | test_dbm.py | 11 from dbm import ndbm 13 ndbm = None variable 167 @unittest.skipUnless(ndbm, reason='Test requires ndbm')
|
/external/python/cpython3/Lib/dbm/ |
D | __init__.py | 48 from dbm import ndbm 50 ndbm = None variable 126 if ndbm is not None: 127 d = ndbm.open(filename)
|
/external/python/cpython3/Doc/library/ |
D | dbm.rst | 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 [all …]
|
D | shelve.rst | 87 module: dbm.ndbm 90 * The choice of which database package will be used (such as :mod:`dbm.ndbm` or
|
/external/python/cpython2/Doc/library/ |
D | dbm.rst | 6 :synopsis: The standard "database" interface, based on ndbm. 9 The :mod:`dbm` module has been renamed to :mod:`dbm.ndbm` in Python 3. The 19 This module can be used with the "classic" ndbm interface, the BSD DB 35 Name of the ``ndbm`` implementation library used.
|
/external/python/cpython3/Tools/scripts/ |
D | db2pickle.py | 28 import dbm.ndbm as dbm 36 import dbm.ndbm as anydbm
|
D | pickle2db.py | 33 import dbm.ndbm as dbm 41 import dbm.ndbm as anydbm
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b4.rst | 88 Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
|
D | 3.6.6rc1.rst | 301 Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
|
/external/python/cpython2/ |
D | README | 705 other preferred alternatives (ndbm, gdbm) are not found. 1110 with the backend names `ndbm', `gdbm' and `bdb'.
|
D | configure.ac | 2539 … for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.…
|
D | configure | 1517 `ndbm', `gdbm' and `bdb'.
|
/external/python/cpython3/Doc/faq/ |
D | library.rst | 794 Interfaces to disk-based hashes such as :mod:`DBM <dbm.ndbm>` and :mod:`GDBM
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 427 module: dbm.ndbm 430 The extension modules :mod:`dbm.ndbm` and :mod:`dbm.gnu` provide
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 2052 dbm Interface to Unix ndbm database library
|
D | HISTORY | 8595 which ndbm.h file to include; Berkeley DB's nbdm and GDBM's ndbm is
|
/external/python/cpython3/ |
D | configure.ac | 3055 … for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.…
|
D | configure | 1543 `ndbm', `gdbm' and `bdb'.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3537 - Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string 16069 - Issue #3799: Document that dbm.gnu and dbm.ndbm will accept string arguments 16732 ``dbm.ndbm`` (was ``dbm``) and ``dbm.dumb`` (was ``dumbdbm``) 25974 which ndbm.h file to include; Berkeley DB's nbdm and GDBM's ndbm is
|