|
__init__(self,
main)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
__call__(self)
Pretend to be the items method. |
source code
|
|
|
__getitem__(self,
index)
Fetch the item at position i. |
source code
|
|
|
__setitem__(self,
index,
item)
Set item at position i to item. |
source code
|
|
|
__delitem__(self,
i)
Delete the item at position i. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|