|
|
|
|
|
__set_attribute(self,
name,
value)
Add a single argument as a simple property. |
source code
|
|
|
|
_arg(self,
**kargs)
Set a single named argument as an attribute (the signature uses kargs
so that the name does not need to be quoted). |
source code
|
|
|
|
_karg(self,
**kargs)
Set a single keyword argument (ie with default) as an attribute (the
signature uses kargs so that the name does not need to be quoted). |
source code
|
|
|
|
_args(self,
**kargs)
Set a arg as an attribute (the signature uses kargs so that the
attribute name does not need to be quoted). The name (without '')
is added to self.__arg_names. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__iter__(self)
Return all children, in order. |
source code
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|