Package dbf :: Module ver_2 :: Class _DbfMemo
[hide private]
[frames] | no frames]

Class _DbfMemo

source code

object --+
         |
        _DbfMemo
Known Subclasses:

Provides access to memo fields as dictionaries Must override _init, _get_memo, and _put_memo to store memo contents to disk

Instance Methods [hide private]
 
_init(self)
Initialize disk file usage
source code
 
_get_memo(self, block)
Retrieve memo contents from disk
source code
 
_put_memo(self, data)
Store memo contents to disk
source code
 
_zap(self)
Resets memo structure back to zero memos
source code
 
__init__(self, meta)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
get_memo(self, block)
Gets the memo in block
source code
 
put_memo(self, data)
Stores data in memo file, returns block number
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, meta)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)