Home | Trees | Indices | Help |
|
---|
|
ulist ensures that all items are unique and provides an __onadditem__ hook to perform custom action in subclasses.
|
|||
new empty list |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
item |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
|||
Inherited from |
|
x.__init__(...) initializes x; see help(type(x)) for signature
|
x+y
|
x+=y
|
append object to end
|
insert object before index
|
remove and return item at index (default last). Raises IndexError if list is empty or index is out of range.
|
remove first occurrence of value. Raises ValueError if the value is not present.
|
Called for each item added. Override in subclasses for adding custom action. |
Called for each item removed. Override in subclasses for adding custom action. |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Feb 17 16:23:26 2017 | http://epydoc.sourceforge.net |