Container of some IndexedCollectables.
XXX Seems to be not used and duplicating functionality: listing (thus listing property)
Methods
clear(() -> None. Remove all items from D.) | |||
copy(*args, **kwargs) | Create a copy of a collection. | ||
fromkeys(...) | v defaults to None. | ||
get((k[,d]) -> D[k] if k in D, ...) | |||
has_key((k) -> True if D has a key k, else False) | |||
is_set([key]) | If item (or any in the present or listed) was set | ||
items(() -> list of D’s (key, value) pairs, ...) | |||
iteritems(() -> an iterator over the (key, ...) | |||
iterkeys(() -> an iterator over the keys of D) | |||
itervalues(...) | |||
keys(() -> list of D’s keys) | |||
pop((k[,d]) -> v, ...) | If key is not found, d is returned if given, otherwise KeyError is raised | ||
popitem(() -> (k, v), ...) | 2-tuple; but raise KeyError if D is empty. | ||
reset([key]) | Reset the conditional attribute defined by key | ||
setdefault((k[,d]) -> D.get(k,d), ...) | |||
update(source[, copyvalues, memo]) |
|
||
values(() -> list of D’s values) | |||
viewitems(...) | |||
viewkeys(...) | |||
viewvalues(...) | |||
which_set() | Return list of keys which were set |
Initialize the Collection
Parameters : | items : dict of IndexedCollectable’s
name : str
|
---|
Methods
clear(() -> None. Remove all items from D.) | |||
copy(*args, **kwargs) | Create a copy of a collection. | ||
fromkeys(...) | v defaults to None. | ||
get((k[,d]) -> D[k] if k in D, ...) | |||
has_key((k) -> True if D has a key k, else False) | |||
is_set([key]) | If item (or any in the present or listed) was set | ||
items(() -> list of D’s (key, value) pairs, ...) | |||
iteritems(() -> an iterator over the (key, ...) | |||
iterkeys(() -> an iterator over the keys of D) | |||
itervalues(...) | |||
keys(() -> list of D’s keys) | |||
pop((k[,d]) -> v, ...) | If key is not found, d is returned if given, otherwise KeyError is raised | ||
popitem(() -> (k, v), ...) | 2-tuple; but raise KeyError if D is empty. | ||
reset([key]) | Reset the conditional attribute defined by key | ||
setdefault((k[,d]) -> D.get(k,d), ...) | |||
update(source[, copyvalues, memo]) |
|
||
values(() -> list of D’s values) | |||
viewitems(...) | |||
viewkeys(...) | |||
viewvalues(...) | |||
which_set() | Return list of keys which were set |
Create a copy of a collection.
By default this is going to return a deep copy of the collection, hence no data would be shared between the original dataset and its copy.
Parameters : | deep : boolean, optional
a : list or None
memo : dict
|
---|
If item (or any in the present or listed) was set
Parameters : | key : None or str or list of str
|
---|
Return a list of registered ca along with the documentation
Reset the conditional attribute defined by key
Return list of keys which were set