|
|
|
|
|
__str__(self)
Returns a string representation |
source code
|
|
|
|
|
__getitem__(self,
key)
Returns the value of the named column |
source code
|
|
|
__setitem__(self,
key,
value)
Not used in this implementation |
source code
|
|
|
__getslice__(self,
i,
j)
Returns the value of the numbered column |
source code
|
|
|
__setslice__(self,
i,
j,
list)
Not used in this implementation |
source code
|
|
|
|
|
keymappings(self)
Returns a dictionary of the keys and their indices in the row |
source code
|
|
|
has_key(self,
key)
Returns whether the given key is valid |
source code
|
|
|
__len__(self)
Returns how many columns are in this row |
source code
|
|
|
|
|
|