Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_gdbm.py4 gdbm = import_module('gdbm') variable
20 self.g = gdbm.open(filename, 'c')
37 self.assertRaises(gdbm.error, gdbm.open, filename, 'r')
39 self.g = gdbm.open(filename, 'c')
41 self.assertRaises(gdbm.error, lambda: self.g['a'])
43 self.assertRaises(gdbm.error, lambda: gdbm.open(filename, 'rx').close())
47 all = set(gdbm.open_flags)
51 self.g = gdbm.open(filename, mode)
58 self.g = gdbm.open(filename, mode + flag)
62 self.g = gdbm.open(filename, 'c')
/external/python/cpython2/Doc/library/
Dgdbm.rst1 :mod:`gdbm` --- GNU's reinterpretation of dbm
4 .. module:: gdbm
9 The :mod:`gdbm` module has been renamed to :mod:`dbm.gnu` in Python 3. The
16 This module is quite similar to the :mod:`dbm` module, but uses ``gdbm`` instead
18 created by ``gdbm`` and ``dbm`` are incompatible.
20 The :mod:`gdbm` module provides an interface to the GNU DBM library. ``gdbm``
22 always strings. Printing a ``gdbm`` object doesn't print the keys and values,
30 Raised on ``gdbm``\ -specific errors, such as I/O errors. :exc:`KeyError` is
36 Open a ``gdbm`` database and return a ``gdbm`` object. The *filename* argument
73 Not all flags are valid for all versions of ``gdbm``. The module constant
[all …]
Dwhichdb.rst14 database modules available—:mod:`dbm`, :mod:`gdbm`, or :mod:`dbhash`\
23 such as ``'dbm'`` or ``'gdbm'``.
Danydbm.rst16 module: gdbm
21 :mod:`dbhash` (requires :mod:`bsddb`), :mod:`gdbm`, or :mod:`dbm`. If none of
114 Module :mod:`gdbm`
Ddumbdbm.rst22 is written entirely in Python. Unlike other modules such as :mod:`gdbm` and
69 Module :mod:`gdbm`
Dpersistence.rst28 gdbm.rst
Dshelve.rst90 module: gdbm
94 :mod:`gdbm` or :mod:`bsddb`) depends on which interface is available. Therefore
204 Module :mod:`gdbm`
Ddbm.rst81 Module :mod:`gdbm`
/external/python/cpython2/Tools/scripts/
Dpickle2db.py37 import gdbm
39 gdbm = None variable
106 dbopen = gdbm.open
Ddb2pickle.py32 import gdbm
34 gdbm = None variable
101 dbopen = gdbm.open
/external/python/cpython2/Modules/
DSetup.dist399 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
403 #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
/external/python/cpython2/Doc/faq/
Dlibrary.rst771 and :mod:`GDBM <gdbm>` are also included with standard Python.
793 general such as using gdbm with pickle/shelve.
/external/python/cpython2/PC/os2emx/
DREADME.os2emx127 GNU GDBM (gdbm, dbm), zlib (zlib), GNU Readline (readline), and GNU UFC
331 GNU gdbm HAVE_GDBM
/external/python/cpython2/
DREADME489 crypt, curses, errno, fcntl, gdbm, grp, imageop,
704 other preferred alternatives (ndbm, gdbm) are not found.
1109 with the backend names `ndbm', `gdbm' and `bdb'.
Dconfigure.ac2510 …or dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.]),
/external/python/cpython2/Doc/distutils/
Dsetupscript.rst319 libraries=['gdbm', 'readline'])
/external/python/cpython2/Doc/reference/
Ddatamodel.rst453 module: gdbm
456 The extension modules :mod:`dbm`, :mod:`gdbm`, and :mod:`bsddb` provide
/external/python/cpython2/Misc/
DHISTORY3527 - The db2pickle and pickle2db scripts can now dump/load gdbm files.
3856 generated by gdbm on OS/2 EMX.
12050 - Doc strings contributed by Mitch Chapman to the termios, pwd, gdbm
13548 - The extension modules dbm, gdbm and bsddb now check that the
13555 - The gdbm module now supports a sync() method.
14431 - New module whichdb recognizes dbm, gdbm and bsddb/dbhash files.
14895 - The gdbm module now supports opening databases in "fast" mode by
15039 The optional built-in modules "dbm" and "gdbm" are more coordinated
15053 The module "anydbm" provides a unified interface to "bsddb", "gdbm",
Dcheatsheet1841 anydbm Generic interface to all dbm clones. (dbhash, gdbm,
DNEWS4530 - Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.
8646 - Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat libs.