A shared number.
|
|
|
|
|
|
|
__ge__(self,
other)
Greater-than or equal comparison. |
source code
|
|
|
__gt__(self,
other)
Strictly greater-than comparison. |
source code
|
|
|
|
|
__le__(self,
other)
Less-than or equal comparison. |
source code
|
|
|
__lt__(self,
other)
Strictly less-than comparison. |
source code
|
|
|
|
|
__neq__(self,
other)
Negated equality testing. |
source code
|
|
|
__pow__(self,
exponent)
Exponentation to known integer exponents. |
source code
|
|
|
__radd__(self,
other)
Addition (reflected argument version). |
source code
|
|
|
__rmul__(self,
other)
Multiplication (reflected argument version). |
source code
|
|
|
__rsub__(self,
other)
Subtraction (reflected argument version). |
source code
|
|
|
__rxor__(self,
other)
Exclusive-or (reflected argument version). |
source code
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from twisted.internet.defer.Deferred :
__repr__ ,
__str__ ,
addBoth ,
addCallback ,
addCallbacks ,
addErrback ,
callback ,
chainDeferred ,
errback ,
pause ,
setTimeout ,
unpause
Inherited from twisted.internet.defer.Deferred (private):
_continue ,
_runCallbacks ,
_startRunCallbacks
|