property seq of Base2 inheriting classes, holds a list of Item objects.
|
__init__(self,
readonly=True)
only way to write to a Seq is to initialize it with new items
each itemtuple has (value, type, line) where line is optional |
source code
|
|
|
|
|
|
|
|
|
|
|
append(self,
val,
typ,
line=None)
if not readonly add new Item() |
source code
|
|
|
replace(self,
index=-1,
val=None,
typ=None,
line=None)
if not readonly replace Item at index with new Item or
simply replace value or type |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|