Package dbf :: Module tables :: Class _DbfMemo
[hide private]

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(yo)
initialize disk file usage
source code
 
_get_memo(yo, block)
retrieve memo contents from disk
source code
 
_put_memo(yo, data)
store memo contents to disk
source code
 
__init__(yo, meta)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
get_memo(yo, block, field)
gets the memo in block
source code
 
put_memo(yo, data)
stores data in memo file, returns block number
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(yo, meta)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__