/external/python/cpython2/Doc/library/ |
D | dbm.rst | 1 :mod:`dbm` --- Simple "database" interface 4 .. module:: dbm 9 The :mod:`dbm` module has been renamed to :mod:`dbm.ndbm` in Python 3. The 14 The :mod:`dbm` module provides an interface to the Unix "(n)dbm" library. Dbm 16 always strings. Printing a dbm object doesn't print the keys and values, and the 29 Raised on dbm-specific errors, such as I/O errors. :exc:`KeyError` is raised for 40 Open a dbm database and return a dbm object. The *filename* argument is the 67 In addition to the dictionary-like methods, ``dbm`` objects 73 Close the ``dbm`` database. 79 Generic interface to ``dbm``\ -style databases.
|
D | anydbm.rst | 9 The :mod:`anydbm` module has been renamed to :mod:`dbm` in Python 3. The 17 module: dbm 21 :mod:`dbhash` (requires :mod:`bsddb`), :mod:`gdbm`, or :mod:`dbm`. If none of 108 Module :mod:`dbm` 112 Portable implementation of the ``dbm`` interface. 115 GNU database interface, based on the ``dbm`` interface. 118 General object persistence built on top of the Python ``dbm`` interface.
|
D | gdbm.rst | 1 :mod:`gdbm` --- GNU's reinterpretation of dbm 6 :synopsis: GNU's reinterpretation of dbm. 9 The :mod:`gdbm` module has been renamed to :mod:`dbm.gnu` in Python 3. The 14 .. index:: module: dbm 16 This module is quite similar to the :mod:`dbm` module, but uses ``gdbm`` instead 18 created by ``gdbm`` and ``dbm`` are incompatible. 127 Generic interface to ``dbm``\ -style databases.
|
D | whichdb.rst | 8 The :mod:`whichdb` module's only function has been put into the :mod:`dbm` 14 database modules available—:mod:`dbm`, :mod:`gdbm`, or :mod:`dbhash`\ 23 such as ``'dbm'`` or ``'gdbm'``.
|
D | shelve.rst | 14 A "shelf" is a persistent, dictionary-like object. The difference with "dbm" 89 module: dbm 93 * The choice of which database package will be used (such as :mod:`dbm`, 95 it is not safe to open the database directly using :mod:`dbm`. The database is 96 also (unfortunately) subject to the limitations of :mod:`dbm`, if it is used --- 189 Generic interface to ``dbm``\ -style databases. 198 Module :mod:`dbm` 202 Portable implementation of the ``dbm`` interface. 205 GNU database interface, based on the ``dbm`` interface.
|
D | dumbdbm.rst | 8 The :mod:`dumbdbm` module has been renamed to :mod:`dbm.dumb` in Python 3. 64 Generic interface to ``dbm``\ -style databases. 66 Module :mod:`dbm`
|
D | persistence.rst | 27 dbm.rst
|
D | dbhash.rst | 61 Generic interface to ``dbm``\ -style databases.
|
/external/python/cpython2/Lib/ |
D | whichdb.py | 9 import dbm 10 _dbmerror = dbm.error 12 dbm = None variable 35 if not (dbm.library == "GNU gdbm" and sys.platform == "os2emx"): 48 if dbm is not None: 49 d = dbm.open(filename)
|
/external/python/cpython2/Demo/classes/ |
D | Dates.py | 54 dbm = 0 variable 56 _DAYS_BEFORE_MONTH.append(dbm) 57 dbm = dbm + dim variable 58 del dbm, dim 108 dbm = _days_before_month(month, year) 109 if dbm >= n: 111 dbm = dbm - _days_in_month(month, year) 113 ans.month, ans.day, ans.year = month, n-dbm, year
|
D | Dbm.py | 10 import dbm 11 self.db = dbm.open(filename, mode, perm)
|
D | README | 5 Dbm.py Wrapper around built-in dbm, supporting arbitrary values
|
/external/python/cpython2/Lib/test/ |
D | test_dbm.py | 3 dbm = test_support.import_module('dbm') variable 9 self.d = dbm.open(self.filename, 'c') 17 self.d = dbm.open(self.filename, 'c') 33 self.d = dbm.open(self.filename, mode) 35 except dbm.error:
|
/external/python/cpython2/Tools/scripts/ |
D | pickle2db.py | 33 import dbm 35 dbm = None variable 112 dbopen = dbm.open
|
D | db2pickle.py | 28 import dbm 30 dbm = None variable 107 dbopen = dbm.open
|
/external/autotest/client/cros/cellular/ |
D | base_station_pxt.py | 108 def SetPower(self, dbm): argument 111 if dbm <= cellular.Power.OFF: 114 self.c.SendStanza(['AMPLitude:ALL %s' % dbm])
|
D | base_station_8960.py | 124 def SetPower(self, dbm): argument 125 if dbm <= cellular.Power.OFF : 130 'CALL:CELL:POWer %s' % dbm,])
|
D | base_station_interface.py | 47 def SetPower(self, dbm): argument
|
/external/python/cpython2/Modules/ |
D | Setup.dist | 390 # The standard Unix dbm module has been moved to Setup.config so that 397 #dbm dbmmodule.c # dbm(3) may require -lndbm or similar 399 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 97 dbm
|
D | cheatsheet | 1841 anydbm Generic interface to all dbm clones. (dbhash, gdbm, 1842 dbm,dumbdbm) 1869 dbhash (g)dbm-compatible interface to bsdhash.hashopen. 1877 dumbdbm A dumb and slow but simple dbm clone. 2052 dbm Interface to Unix ndbm database library
|
/external/jsoncpp/ |
D | SConstruct | 47 sconsign_path = os.path.join( sconsign_dir_path, '.sconsign.dbm' )
|
/external/python/cpython2/ |
D | README | 546 array, binascii, cmath, cPickle, crypt, cStringIO, dbm 692 Configuring the bsddb and dbm modules 703 dbm module will still be built against the Sleepycat libraries if 1108 dbm extension are checked. Valid value is a colon separated string
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 770 BerkeleyDB library. Interfaces to disk-based hashes such as :mod:`DBM <dbm>` 783 :mod:`shelve` library module uses pickle and (g)dbm to create persistent
|
/external/python/cpython2/PC/os2emx/ |
D | README.os2emx | 127 GNU GDBM (gdbm, dbm), zlib (zlib), GNU Readline (readline), and GNU UFC 407 licenses which would rule out GDBM (and the dbm module because it is
|