[frames | no frames] [show private | hide private]

UserList
Class UserList

Known Subclasses:
Reader

Method Summary
  __init__(self, initlist)
  __add__(self, other)
  __cmp__(self, other)
  __contains__(self, item)
  __delitem__(self, i)
  __delslice__(self, i, j)
  __eq__(self, other)
  __ge__(self, other)
  __getitem__(self, i)
  __getslice__(self, i, j)
  __gt__(self, other)
  __iadd__(self, other)
  __imul__(self, n)
  __le__(self, other)
  __len__(self)
  __lt__(self, other)
  __mul__(self, n)
  __ne__(self, other)
  __radd__(self, other)
  __repr__(self)
  __rmul__(self, n)
  __setitem__(self, i, item)
  __setslice__(self, i, j, other)
  append(self, item)
  count(self, item)
  extend(self, other)
  index(self, item)
  insert(self, i, item)
  pop(self, i)
  remove(self, item)
  reverse(self)
  sort(self, *args)

Method Details

Constructor

__init__(self, initlist=None)

Addition operator

__add__(self, other)

Comparison operator

__cmp__(self, other)

In operator

__contains__(self, item)

Index deletion operator

__delitem__(self, i)

Slice deletion operator

__delslice__(self, i, j)

Equality operator

__eq__(self, other)

Greater-than-or-equals operator

__ge__(self, other)

Indexing operator

__getitem__(self, i)

Slicling operator

__getslice__(self, i, j)

Greater-than operator

__gt__(self, other)

__iadd__

__iadd__(self, other)

__imul__

__imul__(self, n)

Less-than-or-equals operator

__le__(self, other)

Length operator

__len__(self)

Less-than operator

__lt__(self, other)

__mul__

__mul__(self, n)

__ne__

__ne__(self, other)

Right-side addition operator

__radd__(self, other)

Representation operator

__repr__(self)

__rmul__

__rmul__(self, n)

Index assignment operator

__setitem__(self, i, item)

Slice assignment operator

__setslice__(self, i, j, other)

append

append(self, item)

count

count(self, item)

extend

extend(self, other)

index

index(self, item)

insert

insert(self, i, item)

pop

pop(self, i=-1)

remove

remove(self, item)

reverse

reverse(self)

sort

sort(self, *args)


Generated by Epydoc 1.1 on Mon Oct 21 19:45:06 2002 http://epydoc.sf.net