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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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
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/python/cpython2/Lib/test/
test_anydbm.py 1 """Test script for the anydbm module
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')
test_bsddb185.py 10 import anydbm
29 # Verify that anydbm.open does *not* create a bsddb185 file
33 anydbm.open(dbfile, "c").close()
test_whichdb.py 14 anydbm = test.test_support.import_module('anydbm', deprecated=True) variable
37 for name in anydbm._names:
  /prebuilts/gdb/darwin-x86/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
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/gdb/linux-x86/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
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/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
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
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:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
db2pickle.py 9 -a - open using anydbm
36 import anydbm
38 anydbm = None variable
54 "gdbm", "anydbm"])
93 elif opt in ("-a", "--anydbm"):
95 dbopen = anydbm.open
97 sys.stderr.write("anydbm module unavailable.\n")
pickle2db.py 10 -a - open using anydbm
41 import anydbm
43 anydbm = None variable
58 ["hash", "btree", "recno", "dbm", "anydbm",
98 elif opt in ("-a", "--anydbm"):
100 dbopen = anydbm.open
102 sys.stderr.write("anydbm module unavailable.\n")
  /external/python/cpython2/Tools/scripts/
db2pickle.py 9 -a - open using anydbm
36 import anydbm
38 anydbm = None variable
54 "gdbm", "anydbm"])
93 elif opt in ("-a", "--anydbm"):
95 dbopen = anydbm.open
97 sys.stderr.write("anydbm module unavailable.\n")
pickle2db.py 10 -a - open using anydbm
41 import anydbm
43 anydbm = None variable
58 ["hash", "btree", "recno", "dbm", "anydbm",
98 elif opt in ("-a", "--anydbm"):
100 dbopen = anydbm.open
102 sys.stderr.write("anydbm module unavailable.\n")
  /external/python/cpython3/Tools/scripts/
db2pickle.py 36 import dbm.ndbm as anydbm
38 anydbm = None variable
54 "gdbm", "anydbm"])
93 elif opt in ("-a", "--anydbm"):
95 dbopen = anydbm.open
pickle2db.py 41 import dbm.ndbm as anydbm
43 anydbm = None variable
58 ["hash", "btree", "recno", "dbm", "anydbm",
98 elif opt in ("-a", "--anydbm"):
100 dbopen = anydbm.open
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shelve.py 215 """Shelf implementation using the "anydbm" generic dbm interface.
222 import anydbm
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
233 anydbm.open(). The optional protocol parameter specifies the

Completed in 3875 milliseconds

1 2