| Home | Trees | Indices | Help |
|
|---|
object --+ | ObjectPath
ObjectPath(path) Immutable object that represents a compiled object path.
Example for a path: 'root.child[1].{other}child[25]'
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__subclasshook__
Inherited from object:
__class__
Follow the attribute path in the object structure and return the target attribute value.
If it it not found, either returns a default value (if one was passed as second argument) or raises AttributeError.
Append a value to the target element in a subtree.
If any of the children on the path does not exist, it is created.
Set the value of the target element in a subtree.
If any of the children on the path does not exist, it is created.
| Home | Trees | Indices | Help |
|
|---|