__init__ (*args, **kwds)
|
|
activate ([shallow])
|
Activate this container. |
append (value)
|
S.append(value) -- append value to the end of the sequence |
child (key)
|
Get the child object associated with a given storage key for this container. |
children ()
|
A generator over the children of this container. |
clear ()
|
|
clone ()
|
Returns a copy of this object with the parent pointer set to None . |
components ([active])
|
Generates an efficient traversal of all components stored under this container. |
count (value)
|
|
deactivate ([shallow])
|
Deactivate this container. |
extend (values)
|
S.extend(iterable) -- extend sequence by appending elements from the iterable |
getname ([fully_qualified, name_buffer, ...])
|
Dynamically generates a name for this object. |
index (value, [start, [stop]])
|
Raises ValueError if the value is not present. |
insert (i, item)
|
S.insert(index, object) -- insert object before index |
pop ([index])
|
Raise IndexError if list is empty or index is out of range. |
remove (value)
|
S.remove(value) -- remove first occurrence of value. |
reverse ()
|
S.reverse() -- reverse IN PLACE |