Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_dbm_ndbm.py6 import dbm.ndbm
7 from dbm.ndbm import error
13 self.d = dbm.ndbm.open(self.filename, 'c')
21 self.d = dbm.ndbm.open(self.filename, 'c')
41 if dbm.ndbm.library == 'Berkeley DB':
44 self.d = dbm.ndbm.open(self.filename, 'c')
57 self.d = dbm.ndbm.open(self.filename, mode)
63 with dbm.ndbm.open(self.filename, 'c') as db:
66 with dbm.ndbm.open(self.filename, 'r') as db:
69 with self.assertRaises(dbm.ndbm.error) as cm:
[all …]
Dtest_dbm.py10 from dbm import ndbm
12 ndbm = None variable
177 @unittest.skipUnless(ndbm, reason='Test requires ndbm')
/third_party/python/Lib/dbm/
D__init__.py48 from dbm import ndbm
50 ndbm = None variable
127 if ndbm is not None:
128 d = ndbm.open(filename)
/third_party/python/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'``.
141 file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are incompatible.
240 :mod:`dbm.ndbm` --- Interface based on ndbm
243 .. module:: dbm.ndbm
245 :synopsis: The standard "database" interface, based on ndbm.
247 **Source code:** :source:`Lib/dbm/ndbm.py`
251 The :mod:`dbm.ndbm` module provides an interface to the Unix "(n)dbm" library.
256 This module can be used with the "classic" ndbm interface or the GNU GDBM
[all …]
Dshelve.rst95 module: dbm.ndbm
98 * The choice of which database package will be used (such as :mod:`dbm.ndbm` or
/third_party/python/Tools/scripts/
Dpickle2db.py33 import dbm.ndbm as dbm
41 import dbm.ndbm as anydbm
Ddb2pickle.py28 import dbm.ndbm as dbm
36 import dbm.ndbm as anydbm
/third_party/python/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
D3.8.0a1.rst3618 opened by :func:`dbm.gnu.open` and :func:`dbm.ndbm.open` due to OS-related
4986 Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
/third_party/python/Doc/using/
Dconfigure.rst85 * ``ndbm``;
/third_party/python/Doc/faq/
Dlibrary.rst792 Interfaces to disk-based hashes such as :mod:`DBM <dbm.ndbm>` and :mod:`GDBM
/third_party/python/Doc/whatsnew/
D3.8.rst1950 :mod:`dbm.gnu` or :mod:`dbm.ndbm`) raises :attr:`error` (:exc:`dbm.dumb.error`,
1951 :exc:`dbm.gnu.error` or :exc:`dbm.ndbm.error`) instead of :exc:`KeyError`.
/third_party/python/Doc/reference/
Ddatamodel.rst454 module: dbm.ndbm
457 The extension modules :mod:`dbm.ndbm` and :mod:`dbm.gnu` provide
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch11400 - dbm_order = "ndbm:gdbm:bdb".split(":")
11404 if cand == "ndbm":
/third_party/python/
Dconfigure.ac3206 …or dbm; a valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.…
/third_party/python/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