HomeSort by relevance Sort by last modified time
    Searched refs:anydbm (Results 1 - 9 of 9) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_anydbm.py 2 """Test script for the anydbm module
14 anydbm = test_support.import_module('anydbm', deprecated=True) variable
39 f = anydbm.open(_fname, 'c')
48 f = anydbm.open(_fname, 'c')
55 f = anydbm.open(_fname, 'r')
61 f = anydbm.open(_fname, 'r')
71 f = anydbm.open(_fname, 'n')
test_bsddb185.py 10 import anydbm namespace
29 # Verify that anydbm.open does *not* create a bsddb185 file
33 anydbm.open(dbfile, "c").close()
test_whichdb.py 15 anydbm = test.test_support.import_module('anydbm', deprecated=True) variable
38 for name in anydbm._names:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_anydbm.py 2 """Test script for the anydbm module
14 anydbm = test_support.import_module('anydbm', deprecated=True) variable
39 f = anydbm.open(_fname, 'c')
48 f = anydbm.open(_fname, 'c')
55 f = anydbm.open(_fname, 'r')
61 f = anydbm.open(_fname, 'r')
71 f = anydbm.open(_fname, 'n')
test_bsddb185.py 10 import anydbm namespace
29 # Verify that anydbm.open does *not* create a bsddb185 file
33 anydbm.open(dbfile, "c").close()
test_whichdb.py 15 anydbm = test.test_support.import_module('anydbm', deprecated=True) variable
38 for name in anydbm._names:
  /external/chromium_org/third_party/tlslite/tlslite/
BaseDB.py 3 import anydbm namespace
19 @raise anydbm.error: If there's a problem creating the database.
22 self.db = anydbm.open(self.filename, "n") #raises anydbm.error
31 @raise anydbm.error: If there's a problem opening the database.
36 self.db = anydbm.open(self.filename, "w") #raises anydbm.error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shelve.py 215 """Shelf implementation using the "anydbm" generic dbm interface.
222 import anydbm namespace
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
233 anydbm.open(). The optional protocol parameter specifies the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shelve.py 215 """Shelf implementation using the "anydbm" generic dbm interface.
222 import anydbm namespace
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
233 anydbm.open(). The optional protocol parameter specifies the

Completed in 215 milliseconds