OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Shelf
(Results
1 - 2
of
2
) sorted by null
/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
...]
Completed in 141 milliseconds