Module types :: Class instance
[show private | hide private]
[frames | no frames]

Class instance

object --+
         |
        instance


Method Summary
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature (inherited from object)
  __abs__(x)
Return abs(x)
  __add__(x, y)
Return x+y
  __and__(x, y)
Return x&y
  __call__(x, ...)
Return x(...)
  __cmp__(x, y)
Return cmp(x,y)
  __coerce__(x, y)
Return coerce(x, y)
  __contains__(x, y)
Return y in x
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __delitem__(x, y)
Return del x[y]
  __delslice__(x, i, j)
Return del x[i:j]
  __div__(x, y)
Return x/y
  __divmod__(x, y)
Return xdivmod(x, y)y
  __eq__(x, y)
Return x==y
  __float__(x)
Return float(x)
  __floordiv__(x, y)
Return x//y
  __ge__(x, y)
Return x>=y
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __getitem__(x, y)
Return x[y]
  __getslice__(x, i, j)
Return x[i:j]
  __gt__(x, y)
Return x>y
  __hash__(x)
Return hash(x)
  __hex__(x)
Return hex(x)
  __iadd__(x, y)
Return x+y
  __iand__(x, y)
Return x&y
  __idiv__(x, y)
Return x/y
  __ifloordiv__(x, y)
Return x//y
  __ilshift__(x, y)
Return x<<y
  __imod__(x, y)
Return x%y
  __imul__(x, y)
Return x*y
  __int__(x)
Return int(x)
  __invert__(x)
Return ~x
  __ior__(x, y)
Return x|y
  __ipow__(x, y)
Return x**y
  __irshift__(x, y)
Return x>>y
  __isub__(x, y)
Return x-y
  __iter__(x)
Return iter(x)
  __itruediv__(x, y)
Return x/y
  __ixor__(x, y)
Return x^y
  __le__(x, y)
Return x<=y
  __len__(x)
Return len(x)
  __long__(x)
Return long(x)
  __lshift__(x, y)
Return x<<y
  __lt__(x, y)
Return x<y
  __mod__(x, y)
Return x%y
  __mul__(x, y)
Return x*y
  __ne__(x, y)
Return x!=y
  __neg__(x)
Return -x
  __new__(T, S, ...)
Return a new object with type S, a subtype of T (inherited from type)
  __nonzero__(x)
Return x != 0
  __oct__(x)
Return oct(x)
  __or__(x, y)
Return x|y
  __pos__(x)
Return +x
  __pow__(x, y, z)
Return pow(x, y[, z])
  __radd__(x, y)
Return y+x
  __rand__(x, y)
Return y&x
  __rdiv__(x, y)
Return y/x
  __rdivmod__(x, y)
Return ydivmod(y, x)x
  __reduce__(...)
helper for pickle (inherited from object)
  __repr__(x)
Return repr(x)
  __rfloordiv__(x, y)
Return y//x
  __rlshift__(x, y)
Return y<<x
  __rmod__(x, y)
Return y%x
  __rmul__(x, y)
Return y*x
  __ror__(x, y)
Return y|x
  __rpow__(y, x, z)
Return pow(x, y[, z])
  __rrshift__(x, y)
Return y>>x
  __rshift__(x, y)
Return x>>y
  __rsub__(x, y)
Return y-x
  __rtruediv__(x, y)
Return y/x
  __rxor__(x, y)
Return y^x
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __setitem__(x, i, y)
Return x[i]=y
  __setslice__(x, i, j, y)
Return x[i:j]=y
  __str__(x)
Return str(x)
  __sub__(x, y)
Return x-y
  __truediv__(x, y)
Return x/y
  __xor__(x, y)
Return x^y
  next(x)
Return the next value, or raise StopIteration

Method Details

__abs__(x)

Returns:
abs(x)

__add__(x, y)
(Addition operator)

Returns:
x+y

__and__(x, y)
(And operator)

Returns:
x&y

__call__(x, ...)
(Call operator)

Returns:
x(...)

__cmp__(x, y)
(Comparison operator)

Returns:
cmp(x,y)

__coerce__(x, y)

Returns:
coerce(x, y)

__contains__(x, y)
(In operator)

Returns:
y in x

__delattr__(...)

x.__delattr__('name') <==> del x.name

__delitem__(x, y)
(Index deletion operator)

Returns:
del x[y]

__delslice__(x, i, j)
(Slice deletion operator)

Returns:
del x[i:j]

__div__(x, y)

Returns:
x/y

__divmod__(x, y)

Returns:
xdivmod(x, y)y

__eq__(x, y)
(Equality operator)

Returns:
x==y

__float__(x)

Returns:
float(x)

__floordiv__(x, y)

Returns:
x//y

__ge__(x, y)
(Greater-than-or-equals operator)

Returns:
x>=y

__getattribute__(...)

x.__getattribute__('name') <==> x.name

__getitem__(x, y)
(Indexing operator)

Returns:
x[y]

__getslice__(x, i, j)
(Slicling operator)

Returns:
x[i:j]

__gt__(x, y)
(Greater-than operator)

Returns:
x>y

__hash__(x)
(Hashing function)

Returns:
hash(x)

__hex__(x)

Returns:
hex(x)

__iadd__(x, y)

Returns:
x+y

__iand__(x, y)

Returns:
x&y

__idiv__(x, y)

Returns:
x/y

__ifloordiv__(x, y)

Returns:
x//y

__ilshift__(x, y)

Returns:
x<<y

__imod__(x, y)

Returns:
x%y

__imul__(x, y)

Returns:
x*y

__int__(x)

Returns:
int(x)

__invert__(x)

Returns:
~x

__ior__(x, y)

Returns:
x|y

__ipow__(x, y)

Returns:
x**y

__irshift__(x, y)

Returns:
x>>y

__isub__(x, y)

Returns:
x-y

__iter__(x)

Returns:
iter(x)

__itruediv__(x, y)

Returns:
x/y

__ixor__(x, y)

Returns:
x^y

__le__(x, y)
(Less-than-or-equals operator)

Returns:
x<=y

__len__(x)
(Length operator)

Returns:
len(x)

__long__(x)

Returns:
long(x)

__lshift__(x, y)

Returns:
x<<y

__lt__(x, y)
(Less-than operator)

Returns:
x<y

__mod__(x, y)

Returns:
x%y

__mul__(x, y)

Returns:
x*y

__ne__(x, y)

Returns:
x!=y

__neg__(x)

Returns:
-x

__nonzero__(x)
(Boolean test operator)

Returns:
x != 0

__oct__(x)

Returns:
oct(x)

__or__(x, y)
(Or operator)

Returns:
x|y

__pos__(x)

Returns:
+x

__pow__(x, y, z=...)

Returns:
pow(x, y[, z])

__radd__(x, y)
(Right-side addition operator)

Returns:
y+x

__rand__(x, y)

Returns:
y&x

__rdiv__(x, y)

Returns:
y/x

__rdivmod__(x, y)

Returns:
ydivmod(y, x)x

__repr__(x)
(Representation operator)

Returns:
repr(x)

__rfloordiv__(x, y)

Returns:
y//x

__rlshift__(x, y)

Returns:
y<<x

__rmod__(x, y)

Returns:
y%x

__rmul__(x, y)

Returns:
y*x

__ror__(x, y)

Returns:
y|x

__rpow__(y, x, z=...)

Returns:
pow(x, y[, z])

__rrshift__(x, y)

Returns:
y>>x

__rshift__(x, y)

Returns:
x>>y

__rsub__(x, y)

Returns:
y-x

__rtruediv__(x, y)

Returns:
y/x

__rxor__(x, y)

Returns:
y^x

__setattr__(...)

x.__setattr__('name', value) <==> x.name = value

__setitem__(x, i, y)
(Index assignment operator)

Returns:
x[i]=y

__setslice__(x, i, j, y)
(Slice assignment operator)

Returns:
x[i:j]=y

__str__(x)
(Informal representation operator)

Returns:
str(x)

__sub__(x, y)
(Subtraction operator)

Returns:
x-y

__truediv__(x, y)

Returns:
x/y

__xor__(x, y)

Returns:
x^y

next(x)

Returns:
the next value, or raise StopIteration

Generated by Epydoc 1.2 prerelease on Wed Jan 29 06:29:32 2003 http://epydoc.sf.net