Searched refs:shelve (Results 1 - 1 of 1) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_shelve.py | 3 import shelve namespace 53 s = shelve.Shelf(d1, protocol=2, writeback=False) 69 s = shelve.open(filename=filename if filename is not None else self.fn, 97 with shelve.Shelf(d1, protocol=0) as s: 101 with shelve.Shelf(d2, protocol=1) as s: 111 with shelve.Shelf(d1, protocol=2, writeback=False) as s: 118 with shelve.Shelf(d2, protocol=2, writeback=True) as s: 131 shelve.Shelf(d)[key] = [1] 134 shelve.Shelf(d, keyencoding='latin-1')[key] = [1] 137 s = shelve [all...] |
Completed in 1 milliseconds