Method Summary |
|
__init__ (...)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
|
__add__ (x,
y)
x.__add__(y) <==> x+y |
|
__cmp__ (x,
y)
x.__cmp__(y) <==> cmp(x,y) |
|
__delitem__ (x,
y)
x.__delitem__(y) <==> del x[y] |
|
__getitem__ (x,
y)
x.__getitem__(y) <==> x[y] |
|
__getslice__ (x,
i,
j)
Use of negative indices is not supported. |
|
__mul__ (x,
y)
x.__mul__(y) <==> x*y |
|
__new__ (T,
S,
...)
T.__new__(S, ...) -> a new object with type S, a subtype of T |
|
__pow__ (x,
y,
z)
x.__pow__(y[, z]) <==> pow(x, y[, z]) |
|
__radd__ (x,
y)
x.__radd__(y) <==> y+x |
|
__repr__ (x)
x.__repr__() <==> repr(x) |
|
__rmul__ (x,
y)
x.__rmul__(y) <==> y*x |
|
__rpow__ (y,
x,
z)
y.__rpow__(x[, z]) <==> pow(x, y[, z]) |
|
__rsub__ (x,
y)
x.__rsub__(y) <==> y-x |
|
__setitem__ (x,
i,
y)
x.__setitem__(i, y) <==> x[i]=y |
|
__sub__ (x,
y)
x.__sub__(y) <==> x-y |
|
copy(...)
|
|
degree(...)
|
|
is_zero(...)
|
|
list(...)
|
|
set_from_list(...)
|
Inherited from object |
|
__delattr__ (...)
x.__delattr__('name') <==> del x.name |
|
__getattribute__ (...)
x.__getattribute__('name') <==> x.name |
|
__hash__ (x)
x.__hash__() <==> hash(x) |
|
__reduce__ (...)
helper for pickle |
|
__reduce_ex__ (...)
helper for pickle |
|
__setattr__ (...)
x.__setattr__('name', value) <==> x.name = value |
|
__str__ (x)
x.__str__() <==> str(x) |