|
|
__init__(self,
records=None,
desc=None,
key=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| _get_record(self,
table=None,
rec_no=None,
value=None) |
source code
|
|
|
|
| _purge(self,
record,
old_record_number,
offset) |
source code
|
|
|
|
_still_valid_check(self)
implemented by subclass; must return True if underlying structure
meets need |
source code
|
|
|
|
_nav_check(self)
implemented by subclass; must return True if underlying structure
meets need |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
index(self,
record,
start=None,
stop=None)
returns the index of record between start and stop start and stop
default to the first and last record |
source code
|
|
|
|
|
|
|
key(self,
record)
table_name, record_number |
source code
|
|
|
|
|
|
|
query(self,
criteria)
criteria is a callback that returns a truthy value for matching
record |
source code
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from _Navigation:
bottom,
goto,
skip,
top
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|