/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False)
26 self.fail('Closed shelf should not find a key')
60 s = shelve.Shelf(d1, protocol=0)
65 s = shelve.Shelf(d2, protocol=1)
75 s = shelve.Shelf(d1, protocol=2, writeback=False)
83 s = shelve.Shelf(d2, protocol=2, writeback=True)
96 s = shelve.Shelf(d, writeback=True)
113 type2test = shelve.Shelf
118 x= shelve.Shelf({}, **self._args)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False) 26 self.fail('Closed shelf should not find a key') 60 s = shelve.Shelf(d1, protocol=0) 65 s = shelve.Shelf(d2, protocol=1) 75 s = shelve.Shelf(d1, protocol=2, writeback=False) 83 s = shelve.Shelf(d2, protocol=2, writeback=True) 96 s = shelve.Shelf(d, writeback=True) 113 type2test = shelve.Shelf 118 x= shelve.Shelf({}, **self._args)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False) 26 self.fail('Closed shelf should not find a key') 60 s = shelve.Shelf(d1, protocol=0) 65 s = shelve.Shelf(d2, protocol=1) 75 s = shelve.Shelf(d1, protocol=2, writeback=False) 83 s = shelve.Shelf(d2, protocol=2, writeback=True) 96 s = shelve.Shelf(d, writeback=True) 113 type2test = shelve.Shelf 118 x= shelve.Shelf({}, **self._args)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False) 26 self.fail('Closed shelf should not find a key') 60 s = shelve.Shelf(d1, protocol=0) 65 s = shelve.Shelf(d2, protocol=1) 75 s = shelve.Shelf(d1, protocol=2, writeback=False) 83 s = shelve.Shelf(d2, protocol=2, writeback=True) 96 s = shelve.Shelf(d, writeback=True) 113 type2test = shelve.Shelf 118 x= shelve.Shelf({}, **self._args)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_shelve.py | 15 s = shelve.Shelf(d1, protocol=2, writeback=False) 26 self.fail('Closed shelf should not find a key') 60 s = shelve.Shelf(d1, protocol=0) 65 s = shelve.Shelf(d2, protocol=1) 75 s = shelve.Shelf(d1, protocol=2, writeback=False) 83 s = shelve.Shelf(d2, protocol=2, writeback=True) 96 s = shelve.Shelf(d, writeback=True) 113 type2test = shelve.Shelf 118 x= shelve.Shelf({}, **self._args)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
shelve.py | 3 A "shelf" is a persistent, dictionary-like object. The difference
4 with dbm databases is that the values (not the keys!) in a shelf can
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
79 raise ValueError('invalid operation on closed shelf')
85 class Shelf(UserDict.DictMixin):
86 """Base class for shelf implementations.
172 class BsdDbShelf(Shelf):
173 """Shelf implementation using the "BSD" db interface.
186 Shelf.__init__(self, dict, protocol, writeback)
214 class DbfilenameShelf(Shelf): [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
shelve.py | 3 A "shelf" is a persistent, dictionary-like object. The difference 4 with dbm databases is that the values (not the keys!) in a shelf can 73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] 79 raise ValueError('invalid operation on closed shelf') 85 class Shelf(UserDict.DictMixin): 86 """Base class for shelf implementations. 172 class BsdDbShelf(Shelf): 173 """Shelf implementation using the "BSD" db interface. 186 Shelf.__init__(self, dict, protocol, writeback) 214 class DbfilenameShelf(Shelf) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
shelve.py | 3 A "shelf" is a persistent, dictionary-like object. The difference 4 with dbm databases is that the values (not the keys!) in a shelf can 73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] 79 raise ValueError('invalid operation on closed shelf') 85 class Shelf(UserDict.DictMixin): 86 """Base class for shelf implementations. 172 class BsdDbShelf(Shelf): 173 """Shelf implementation using the "BSD" db interface. 186 Shelf.__init__(self, dict, protocol, writeback) 214 class DbfilenameShelf(Shelf) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shelve.py | 3 A "shelf" is a persistent, dictionary-like object. The difference 4 with dbm databases is that the values (not the keys!) in a shelf can 73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] 79 raise ValueError('invalid operation on closed shelf') 85 class Shelf(UserDict.DictMixin): 86 """Base class for shelf implementations. 172 class BsdDbShelf(Shelf): 173 """Shelf implementation using the "BSD" db interface. 186 Shelf.__init__(self, dict, protocol, writeback) 214 class DbfilenameShelf(Shelf) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shelve.py | 3 A "shelf" is a persistent, dictionary-like object. The difference 4 with dbm databases is that the values (not the keys!) in a shelf can 73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"] 79 raise ValueError('invalid operation on closed shelf') 85 class Shelf(UserDict.DictMixin): 86 """Base class for shelf implementations. 172 class BsdDbShelf(Shelf): 173 """Shelf implementation using the "BSD" db interface. 186 Shelf.__init__(self, dict, protocol, writeback) 214 class DbfilenameShelf(Shelf) [all...] |
/external/autotest/tko/parsers/test/ |
scenario_base.py | 244 return shelve.Shelf(dumbdbm.open(filename, flag), protocol, writeback)
|