Module osets :: Class Set
[show private | hide private]
[frames | no frames]

Type Set

object --+
         |
        Set


Sets: that is lists without order or repetition.

May be used everywhere lists are used... because they rely on them.
Method Summary
  __init__(self, list)
  __add__(self, other)
  __cmp__(self, other)
  __delitem__(self, key)
  __delslice__(self, low, high)
  __getattr__(self, name)
  __getitem__(self, index)
  __getslice__(self, low, high)
  __iadd__(self, other)
  __len__(self)
  __radd__(self, other)
  __repr__(self)
  __setitem__(self, index, value)
  __str__(self)
  __sub__(self, other)
  append(self, member)
  copy(self)
  dup(self)
  empty(self)
  first(self)
  index(self, index)
  remove(self, v)
  s_append(self, member)
  s_extend(self, other)
  sort(self)
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Generated by Epydoc 2.1 on Wed Jul 19 10:36:01 2006 http://epydoc.sf.net