Home
last modified time | relevance | path

Searched refs:ndbm (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_dbm_ndbm.py5 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 …]
Dtest_dbm.py11 from dbm import ndbm
13 ndbm = None variable
167 @unittest.skipUnless(ndbm, reason='Test requires ndbm')
/external/python/cpython3/Lib/dbm/
D__init__.py48 from dbm import ndbm
50 ndbm = None variable
126 if ndbm is not None:
127 d = ndbm.open(filename)
/external/python/cpython3/Doc/library/
Ddbm.rst12 :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 …]
Dshelve.rst87 module: dbm.ndbm
90 * The choice of which database package will be used (such as :mod:`dbm.ndbm` or
/external/python/cpython2/Doc/library/
Ddbm.rst6 :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/
Ddb2pickle.py28 import dbm.ndbm as dbm
36 import dbm.ndbm as anydbm
Dpickle2db.py33 import dbm.ndbm as dbm
41 import dbm.ndbm as anydbm
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b4.rst88 Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
D3.6.6rc1.rst301 Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
/external/python/cpython2/
DREADME705 other preferred alternatives (ndbm, gdbm) are not found.
1110 with the backend names `ndbm', `gdbm' and `bdb'.
Dconfigure.ac2539 … for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.…
Dconfigure1517 `ndbm', `gdbm' and `bdb'.
/external/python/cpython3/Doc/faq/
Dlibrary.rst794 Interfaces to disk-based hashes such as :mod:`DBM <dbm.ndbm>` and :mod:`GDBM
/external/python/cpython3/Doc/reference/
Ddatamodel.rst427 module: dbm.ndbm
430 The extension modules :mod:`dbm.ndbm` and :mod:`dbm.gnu` provide
/external/python/cpython2/Misc/
Dcheatsheet2052 dbm Interface to Unix ndbm database library
DHISTORY8595 which ndbm.h file to include; Berkeley DB's nbdm and GDBM's ndbm is
/external/python/cpython3/
Dconfigure.ac3055 … for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.…
Dconfigure1543 `ndbm', `gdbm' and `bdb'.
/external/python/cpython3/Misc/
DHISTORY3537 - 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