__init__ (*args, **kwds)
|
|
activate ([shallow])
|
Activate this container. |
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. |
deactivate ([shallow])
|
Deactivate this container. |
get (k[,d])
|
|
getname ([fully_qualified, name_buffer, ...])
|
Dynamically generates a name for this object. |
items ()
|
|
keys ()
|
|
pop (k[,d])
|
If key is not found, d is returned if given, otherwise KeyError is raised. |
popitem ()
|
as a 2-tuple; but raise KeyError if D is empty. |
setdefault (k[,d])
|
|
update ([E, ]**F)
|
If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v |
values ()
|
|