Package backend :: Package server :: Package importlib :: Module importLib :: Class Collection
[hide private]
[frames] | no frames]

Class Collection

source code


Nested Classes [hide private]

Inherited from _abcoll.Sized: __metaclass__

Instance Methods [hide private]
 
__init__(self, list=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__setitem__(self, i, item) source code
 
append(self, item)
append object to the end of the sequence
source code
 
add(self, item)
append object to the end of the sequence
source code
 
insert(self, i, item)
insert object before index
source code
 
extend(self, other)
extend sequence by appending elements from the iterable
source code
 
__setslice__(self, i, j, other) source code
 
__add__(self, other) source code
 
__radd__(self, other) source code
 
__repr__(self)
repr(x)
source code

Inherited from UserList.UserList: __cmp__, __contains__, __delitem__, __delslice__, __eq__, __ge__, __getitem__, __getslice__, __gt__, __iadd__, __imul__, __le__, __len__, __lt__, __mul__, __ne__, __rmul__, count, index, pop, remove, reverse, sort

Inherited from _abcoll.Sequence: __iter__, __reversed__

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__

Class Methods [hide private]

Inherited from _abcoll.Sized: __subclasshook__

Class Variables [hide private]

Inherited from UserList.UserList: __abstractmethods__, __hash__

Inherited from UserList.UserList (private): _abc_negative_cache, _abc_negative_cache_version, _abc_registry

Inherited from _abcoll.Sized (private): _abc_cache

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, list=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__setitem__(self, i, item)
(Index assignment operator)

source code 
Overrides: _abcoll.MutableSequence.__setitem__

append(self, item)

source code 

append object to the end of the sequence

Overrides: _abcoll.MutableSequence.append
(inherited documentation)

insert(self, i, item)

source code 

insert object before index

Overrides: _abcoll.MutableSequence.insert
(inherited documentation)

extend(self, other)

source code 

extend sequence by appending elements from the iterable

Overrides: _abcoll.MutableSequence.extend
(inherited documentation)

__setslice__(self, i, j, other)
(Slice assignment operator)

source code 
Overrides: UserList.UserList.__setslice__

__add__(self, other)
(Addition operator)

source code 
Overrides: UserList.UserList.__add__

__radd__(self, other)
(Right-side addition operator)

source code 
Overrides: UserList.UserList.__radd__

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)