Lines Matching refs:writeback
20 .. function:: open(filename, flag='c', protocol=None, writeback=False)
34 optional *writeback* parameter is set to ``True``, all entries accessed are also
65 Write back all entries in the cache if the shelf was opened with *writeback*
106 .. class:: Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8')
115 If the *writeback* parameter is ``True``, the object will hold a cache of all
134 .. class:: BsdDbShelf(dict, protocol=None, writeback=False, keyencoding='utf-8')
143 optional *protocol*, *writeback*, and *keyencoding* parameters have the same
147 .. class:: DbfilenameShelf(filename, flag='c', protocol=None, writeback=False)
153 function. The optional *protocol* and *writeback* parameters have the same
180 # as d was opened WITHOUT writeback=True, beware:
184 # having opened d without writeback=True, you need to code carefully:
189 # or, d=shelve.open(filename,writeback=True) would let you just code