Home
last modified time | relevance | path

Searched refs:anydbm (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_anydbm.py13 anydbm = test_support.import_module('anydbm', deprecated=True) variable
38 f = anydbm.open(_fname, 'c')
47 f = anydbm.open(_fname, 'c')
54 f = anydbm.open(_fname, 'r')
60 f = anydbm.open(_fname, 'r')
70 f = anydbm.open(_fname, 'n')
Dtest_bsddb185.py10 import anydbm
33 anydbm.open(dbfile, "c").close()
Dtest_whichdb.py14 anydbm = test.test_support.import_module('anydbm', deprecated=True) variable
37 for name in anydbm._names:
/external/python/cpython2/Doc/library/
Danydbm.rst1 :mod:`anydbm` --- Generic access to DBM-style databases
4 .. module:: anydbm
9 The :mod:`anydbm` module has been renamed to :mod:`dbm` in Python 3. The
20 :mod:`anydbm` is a generic interface to variants of the DBM database ---
62 modules, with a unique exception also named :exc:`anydbm.error` as the first
63 item --- the latter is used when :exc:`anydbm.error` is raised.
73 import anydbm
76 db = anydbm.open('cache', 'c')
95 In addition to the dictionary-like methods, ``anydbm`` objects
100 Close the ``anydbm`` database.
Ddumbdbm.rst17 :mod:`anydbm` module when no more robust module is available. The :mod:`dumbdbm`
63 Module :mod:`anydbm`
Dpersistence.rst25 anydbm.rst
Dshelve.rst27 has the same interpretation as the *flag* parameter of :func:`anydbm.open`.
141 object. The underlying file will be opened using :func:`anydbm.open`. By
188 Module :mod:`anydbm`
Ddbm.rst78 Module :mod:`anydbm`
Ddbhash.rst60 Module :mod:`anydbm`
Dgdbm.rst126 Module :mod:`anydbm`
/external/python/cpython2/Tools/scripts/
Dpickle2db.py41 import anydbm
43 anydbm = None variable
100 dbopen = anydbm.open
Ddb2pickle.py36 import anydbm
38 anydbm = None variable
95 dbopen = anydbm.open
/external/python/cpython2/Lib/
Dshelve.py226 import anydbm
227 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
/external/python/cpython2/Doc/faq/
Dlibrary.rst809 If my program crashes with a bsddb (or anydbm) database open, it gets corrupted. How come?
812 Databases opened for write access with the bsddb module (and often by the anydbm
/external/python/cpython2/Modules/
DSetup.dist386 # dependencies. The Python module anydbm.py provides an
/external/python/cpython2/Doc/whatsnew/
D2.7.rst1731 >>> anydbm = import_module('anydbm') # Standard absolute import
1732 >>> anydbm
1733 <module 'anydbm' from '/p/python/Lib/anydbm.py'>
/external/python/cpython2/Misc/
Dcheatsheet1841 anydbm Generic interface to all dbm clones. (dbhash, gdbm,
DHISTORY11640 - In anydbm.py, look at the type of an existing database to determine
11641 which module to use to open it. (The anydbm.error exception is now a
15053 The module "anydbm" provides a unified interface to "bsddb", "gdbm",