/external/python/cpython2/Lib/test/ |
D | test_anydbm.py | 13 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')
|
D | test_bsddb185.py | 10 import anydbm 33 anydbm.open(dbfile, "c").close()
|
D | test_whichdb.py | 14 anydbm = test.test_support.import_module('anydbm', deprecated=True) variable 37 for name in anydbm._names:
|
/external/python/cpython2/Doc/library/ |
D | anydbm.rst | 1 :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.
|
D | dumbdbm.rst | 17 :mod:`anydbm` module when no more robust module is available. The :mod:`dumbdbm` 63 Module :mod:`anydbm`
|
D | persistence.rst | 25 anydbm.rst
|
D | shelve.rst | 27 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`
|
D | dbm.rst | 78 Module :mod:`anydbm`
|
D | dbhash.rst | 60 Module :mod:`anydbm`
|
D | gdbm.rst | 126 Module :mod:`anydbm`
|
/external/python/cpython3/Tools/scripts/ |
D | pickle2db.py | 41 import dbm.ndbm as anydbm namespace 43 anydbm = None variable 100 dbopen = anydbm.open
|
D | db2pickle.py | 36 import dbm.ndbm as anydbm namespace 38 anydbm = None variable 95 dbopen = anydbm.open
|
/external/python/cpython2/Tools/scripts/ |
D | db2pickle.py | 36 import anydbm 38 anydbm = None variable 95 dbopen = anydbm.open
|
D | pickle2db.py | 41 import anydbm 43 anydbm = None variable 100 dbopen = anydbm.open
|
/external/python/cpython2/Lib/ |
D | shelve.py | 226 import anydbm 227 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 809 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/ |
D | Setup.dist | 386 # dependencies. The Python module anydbm.py provides an
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.7.rst | 1755 >>> anydbm = import_module('anydbm') # Standard absolute import 1756 >>> anydbm 1757 <module 'anydbm' from '/p/python/Lib/anydbm.py'>
|
D | 3.0.rst | 606 * :mod:`dbm` (:mod:`anydbm`, :mod:`dbhash`, :mod:`dbm`,
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1731 >>> anydbm = import_module('anydbm') # Standard absolute import 1732 >>> anydbm 1733 <module 'anydbm' from '/p/python/Lib/anydbm.py'>
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1841 anydbm Generic interface to all dbm clones. (dbhash, gdbm,
|
D | HISTORY | 11640 - 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",
|
/external/python/cpython3/Misc/ |
D | HISTORY | 16730 ``anydbm`` and ``whichdb`` in its ``__init__.py``, and having 29019 - In anydbm.py, look at the type of an existing database to determine 29020 which module to use to open it. (The anydbm.error exception is now a 32432 The module "anydbm" provides a unified interface to "bsddb", "gdbm",
|