Searched defs:Shelf (Results 1 - 2 of 2) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dshelve.py73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
85 class Shelf(UserDict.DictMixin): class in inherits:UserDict.DictMixin
172 class BsdDbShelf(Shelf):
173 """Shelf implementation using the "BSD" db interface.
186 Shelf.__init__(self, dict, protocol, writeback)
214 class DbfilenameShelf(Shelf):
215 """Shelf implementation using the "anydbm" generic dbm interface.
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dshelve.py73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
85 class Shelf(UserDict.DictMixin): class in inherits:UserDict.DictMixin
172 class BsdDbShelf(Shelf):
173 """Shelf implementation using the "BSD" db interface.
186 Shelf.__init__(self, dict, protocol, writeback)
214 class DbfilenameShelf(Shelf):
215 """Shelf implementation using the "anydbm" generic dbm interface.
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)

Completed in 168 milliseconds