Method Summary |
|
__init__(self,
x)
|
|
__add__(self,
right)
|
|
__del__(self)
|
|
__div__(self,
right)
|
|
__float__(self)
|
|
__getattr__(self,
cmdname)
|
|
__getitem__(self,
t)
|
|
__int__(self)
|
|
__long__(self)
|
|
__mul__(self,
right)
|
|
__pow__(self,
exponent)
|
|
__radd__(self,
left)
|
|
__rdiv__(self,
left)
|
|
__repr__(self)
|
|
__rmul__(self,
left)
|
|
__rsub__(self,
left)
|
|
__setitem__(self,
t,
val)
|
|
__str__(self)
|
|
__sub__(self,
right)
|
|
list (self)
If possible, convert PARI object to a Python list of Python
objects. |
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 |