HomeSort by relevance Sort by last modified time
    Searched full:bsddb (Results 1 - 25 of 44) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dbhash.py 1 """Provide a (g)dbm-compatible interface to bsddb.hashopen."""
7 import bsddb namespace
15 error = bsddb.error # Exported for anydbm
18 return bsddb.hashopen(file, flag, mode)
shelve.py 178 The actual database must be opened using one of the "bsddb"
179 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
180 bsddb.rnopen) and passed to the constructor.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dbhash.py 1 """Provide a (g)dbm-compatible interface to bsddb.hashopen."""
7 import bsddb namespace
15 error = bsddb.error # Exported for anydbm
18 return bsddb.hashopen(file, flag, mode)
shelve.py 178 The actual database must be opened using one of the "bsddb"
179 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
180 bsddb.rnopen) and passed to the constructor.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 1 # Test driver for bsddb package.
15 import_module('bsddb', deprecated=True)
20 requires('bsddb')
58 from bsddb import db
59 from bsddb.test import test_all
68 run_unittest(test_all.suite(module_prefix='bsddb.test.',
test_bsddb.py 2 """Test script for the bsddb C module by Roger E. Masse
12 bsddb = test_support.import_module('bsddb', deprecated=True) variable
223 # if the bsddb implementation leaves the DBCursor open during
263 # do the bsddb._DBWithCursor iterator internals leak cursors?
312 if self.openmethod[0] is not bsddb.btopen:
324 openmethod = [bsddb.btopen]
328 openmethod = [bsddb.btopen]
333 openmethod = [bsddb.btopen]
337 openmethod = [bsddb.hashopen
    [all...]
test___all__.py 8 # Setup bsddb warnings
10 bsddb = support.import_module('bsddb', deprecated=True) variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 1 # Test driver for bsddb package.
15 import_module('bsddb', deprecated=True)
20 requires('bsddb')
58 from bsddb import db
59 from bsddb.test import test_all
68 run_unittest(test_all.suite(module_prefix='bsddb.test.',
test_bsddb.py 2 """Test script for the bsddb C module by Roger E. Masse
12 bsddb = test_support.import_module('bsddb', deprecated=True) variable
223 # if the bsddb implementation leaves the DBCursor open during
263 # do the bsddb._DBWithCursor iterator internals leak cursors?
312 if self.openmethod[0] is not bsddb.btopen:
324 openmethod = [bsddb.btopen]
328 openmethod = [bsddb.btopen]
333 openmethod = [bsddb.btopen]
337 openmethod = [bsddb.hashopen
    [all...]
test___all__.py 8 # Setup bsddb warnings
10 bsddb = support.import_module('bsddb', deprecated=True) variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 9 import bsddb3 as bsddb namespace
12 import bsddb namespace
213 self._db = bsddb._db.DB_orig(*args, **kwargs)
355 if (key != bsddb._db.DB_DONOTINDEX) :
380 self._dbenv = bsddb._db.DBEnv_orig(*args, **kwargs)
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
418 bsddb._db.DBEnv_orig = bsddb._db.DBEnv
419 bsddb._db.DB_orig = bsddb._db.D
    [all...]
test_misc.py 1 """Miscellaneous bsddb module test cases
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 9 import bsddb3 as bsddb namespace
12 import bsddb namespace
213 self._db = bsddb._db.DB_orig(*args, **kwargs)
355 if (key != bsddb._db.DB_DONOTINDEX) :
380 self._dbenv = bsddb._db.DBEnv_orig(*args, **kwargs)
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
418 bsddb._db.DBEnv_orig = bsddb._db.DBEnv
419 bsddb._db.DB_orig = bsddb._db.D
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
xmltools.py 160 return str(value) #de-unicode it; this is needed for bsddb, for example
171 return str(value) #de-unicode it; this is needed for bsddb, for example
188 return str(textNode.data) #de-unicode it; this is needed for bsddb, for example
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 38 For the full featured object oriented interface use the bsddb.db module
48 warnings.warnpy3k("in 3.x, the bsddb module has been removed; "
52 "bsddb.__init__")
58 # python as bsddb._bsddb.
68 from bsddb.dbutils import DeadlockWrap as _DeadlockWrap
79 error = db.DBError # So bsddb.error will mean something...
253 raise error, "BSDDB object has already been closed"
db.py 47 # python as bsddb._bsddb.
dbshelve.py 26 """Manage shelves of pickled objects using bsddb database files for the
88 from bsddb import dbshelve
108 raise db.DBError, "flags should be one of 'r', 'w', 'c' or 'n' or use the bsddb.db.DB_* flags"
120 """A shelf to hold pickled objects, built upon a bsddb DB object. It
dbutils.py 25 # "from bsddb.dbutils import *"
dbrecio.py 3 File-like objects that read from or write to a bsddb record.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 38 For the full featured object oriented interface use the bsddb.db module
48 warnings.warnpy3k("in 3.x, the bsddb module has been removed; "
52 "bsddb.__init__")
58 # python as bsddb._bsddb.
68 from bsddb.dbutils import DeadlockWrap as _DeadlockWrap
79 error = db.DBError # So bsddb.error will mean something...
253 raise error, "BSDDB object has already been closed"
db.py 47 # python as bsddb._bsddb.
dbshelve.py 26 """Manage shelves of pickled objects using bsddb database files for the
88 from bsddb import dbshelve
108 raise db.DBError, "flags should be one of 'r', 'w', 'c' or 'n' or use the bsddb.db.DB_* flags"
120 """A shelf to hold pickled objects, built upon a bsddb DB object. It
dbutils.py 25 # "from bsddb.dbutils import *"
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3-sources.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3-sources.jar 

Completed in 252 milliseconds

1 2