public class PyInstance extends PyObject implements FinalizablePyObject, Traverseproc
PyObject.ConversionException
Modifier and Type | Field and Description |
---|---|
PyObject |
__dict__
The namespace of this instance.
|
PyClass |
instclass |
static PyType |
TYPE |
gcMonitorGlobal
Constructor and Description |
---|
PyInstance() |
PyInstance(PyClass iclass) |
PyInstance(PyClass iclass,
PyObject dict) |
Modifier and Type | Method and Description |
---|---|
PyObject |
__abs__()
Equivalent to the standard Python __abs__ method.
|
PyObject |
__add__(PyObject o)
Equivalent to the standard Python __add__ method.
|
PyObject |
__and__(PyObject o)
Equivalent to the standard Python __and__ method
|
PyObject |
__call__(PyObject[] args,
String[] keywords)
The basic method to override when implementing a callable object.
|
int |
__cmp__(PyObject other)
Equivalent to the standard Python __cmp__ method.
|
Object |
__coerce_ex__(PyObject o)
Implements numeric coercion
|
PyComplex |
__complex__()
Equivalent to the standard Python __complex__ method.
|
boolean |
__contains__(PyObject o)
Equivalent to the standard Python __contains__ method.
|
void |
__del__() |
void |
__delattr__(String name)
A variant of the __delattr__ method which accepts a String
as the key.
|
void |
__delitem__(PyObject key)
Equivalent to the standard Python __delitem__ method.
|
void |
__delslice__(PyObject start,
PyObject stop,
PyObject step) |
PyObject |
__div__(PyObject o)
Equivalent to the standard Python __div__ method
|
PyObject |
__divmod__(PyObject o)
Equivalent to the standard Python __divmod__ method
|
PyObject |
__eq__(PyObject o)
Equivalent to the standard Python __eq__ method.
|
PyObject |
__findattr_ex__(String name)
Attribute lookup hook.
|
PyObject |
__finditem__(int key)
A variant of the __finditem__ method which accepts a primitive
int as the key. |
PyObject |
__finditem__(PyObject key)
Very similar to the standard Python __getitem__ method.
|
PyFloat |
__float__()
Equivalent to the standard Python __float__ method.
|
PyObject |
__floordiv__(PyObject o)
Equivalent to the standard Python __floordiv__ method
|
PyObject |
__format__(PyObject formatSpec) |
PyObject |
__ge__(PyObject o)
Equivalent to the standard Python __ge__ method.
|
PyObject |
__getitem__(PyObject key)
Equivalent to the standard Python __getitem__ method.
|
PyObject |
__getslice__(PyObject start,
PyObject stop,
PyObject step) |
PyObject |
__gt__(PyObject o)
Equivalent to the standard Python __gt__ method.
|
PyString |
__hex__()
Equivalent to the standard Python __hex__ method
Should only be overridden by numeric objects that can be
reasonably represented as a hexadecimal string.
|
PyObject |
__iadd__(PyObject o)
Equivalent to the standard Python __iadd__ method.
|
PyObject |
__iand__(PyObject o)
Equivalent to the standard Python __iand__ method
|
PyObject |
__idiv__(PyObject o)
Equivalent to the standard Python __idiv__ method
|
PyObject |
__ifloordiv__(PyObject o)
Equivalent to the standard Python __ifloordiv__ method
|
PyObject |
__ilshift__(PyObject o)
Equivalent to the standard Python __ilshift__ method
|
PyObject |
__imod__(PyObject o)
Equivalent to the standard Python __imod__ method
|
PyObject |
__imul__(PyObject o)
Equivalent to the standard Python __imul__ method.
|
PyObject |
__index__()
Equivalent to the standard Python __index__ method.
|
void |
__init__(PyObject[] args,
String[] keywords) |
PyObject |
__int__()
Equivalent to the standard Python __int__ method.
|
PyObject |
__invert__()
Equivalent to the standard Python __invert__ method.
|
PyObject |
__ior__(PyObject o)
Equivalent to the standard Python __ior__ method
|
PyObject |
__ipow__(PyObject o)
Equivalent to the standard Python __ipow__ method
|
PyObject |
__irshift__(PyObject o)
Equivalent to the standard Python __irshift__ method
|
PyObject |
__isub__(PyObject o)
Equivalent to the standard Python __isub__ method
|
PyObject |
__iter__()
Return an iterator that is used to iterate the element of this sequence.
|
PyObject |
__iternext__()
Return the next element of the sequence that this is an iterator
for.
|
PyObject |
__itruediv__(PyObject o)
Equivalent to the standard Python __itruediv__ method
|
PyObject |
__ixor__(PyObject o)
Equivalent to the standard Python __ixor__ method
|
PyObject |
__le__(PyObject o)
Equivalent to the standard Python __le__ method.
|
int |
__len__()
Equivalent to the standard Python __len__ method.
|
PyObject |
__long__()
Equivalent to the standard Python __long__ method.
|
PyObject |
__lshift__(PyObject o)
Equivalent to the standard Python __lshift__ method
|
PyObject |
__lt__(PyObject o)
Equivalent to the standard Python __lt__ method.
|
PyObject |
__mod__(PyObject o)
Equivalent to the standard Python __mod__ method
|
PyObject |
__mul__(PyObject o)
Equivalent to the standard Python __mul__ method.
|
PyObject |
__ne__(PyObject o)
Equivalent to the standard Python __ne__ method.
|
PyObject |
__neg__()
Equivalent to the standard Python __neg__ method.
|
boolean |
__nonzero__()
Equivalent to the standard Python __nonzero__ method.
|
PyString |
__oct__()
Equivalent to the standard Python __oct__ method.
|
PyObject |
__or__(PyObject o)
Equivalent to the standard Python __or__ method
|
PyObject |
__pos__()
Equivalent to the standard Python __pos__ method.
|
PyObject |
__pow__(PyObject o)
Equivalent to the standard Python __pow__ method
|
PyObject |
__radd__(PyObject o)
Equivalent to the standard Python __radd__ method.
|
PyObject |
__rand__(PyObject o)
Equivalent to the standard Python __rand__ method
|
PyObject |
__rdiv__(PyObject o)
Equivalent to the standard Python __rdiv__ method
|
PyObject |
__rdivmod__(PyObject o)
Equivalent to the standard Python __rdivmod__ method
|
PyString |
__repr__()
Equivalent to the standard Python __repr__ method.
|
PyObject |
__rfloordiv__(PyObject o)
Equivalent to the standard Python __rfloordiv__ method
|
PyObject |
__rlshift__(PyObject o)
Equivalent to the standard Python __rlshift__ method
|
PyObject |
__rmod__(PyObject o)
Equivalent to the standard Python __rmod__ method
|
PyObject |
__rmul__(PyObject o)
Equivalent to the standard Python __rmul__ method.
|
PyObject |
__ror__(PyObject o)
Equivalent to the standard Python __ror__ method
|
PyObject |
__rpow__(PyObject o)
Equivalent to the standard Python __rpow__ method
|
PyObject |
__rrshift__(PyObject o)
Equivalent to the standard Python __rrshift__ method
|
PyObject |
__rshift__(PyObject o)
Equivalent to the standard Python __rshift__ method
|
PyObject |
__rsub__(PyObject o)
Equivalent to the standard Python __rsub__ method
|
PyObject |
__rtruediv__(PyObject o)
Equivalent to the standard Python __rtruediv__ method
|
PyObject |
__rxor__(PyObject o)
Equivalent to the standard Python __rxor__ method
|
void |
__setattr__(String name,
PyObject value)
A variant of the __setattr__ method which accepts a String
as the key.
|
void |
__setitem__(PyObject key,
PyObject value)
Equivalent to the standard Python __setitem__ method.
|
void |
__setslice__(PyObject start,
PyObject stop,
PyObject step,
PyObject value) |
PyString |
__str__()
Equivalent to the standard Python __str__ method.
|
PyObject |
__sub__(PyObject o)
Equivalent to the standard Python __sub__ method
|
Object |
__tojava__(Class c)
Equivalent to the Jython __tojava__ method.
|
PyObject |
__truediv__(PyObject o)
Equivalent to the standard Python __truediv__ method
|
PyUnicode |
__unicode__() |
PyObject |
__xor__(PyObject o)
Equivalent to the standard Python __xor__ method
|
static void |
ensureFinalizer(PyObject[] args,
String[] kws) |
PyClass |
fastGetClass() |
int |
hashCode() |
PyObject |
instance___abs__()
Implements the __abs__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___add__(PyObject o)
Implements the __add__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___and__(PyObject o)
Implements the __and__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___div__(PyObject o)
Implements the __div__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___divmod__(PyObject o)
Implements the __divmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___floordiv__(PyObject o)
Implements the __floordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___iadd__(PyObject o)
Implements the __iadd__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___iand__(PyObject o)
Implements the __iand__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___idiv__(PyObject o)
Implements the __idiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ifloordiv__(PyObject o)
Implements the __ifloordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ilshift__(PyObject o)
Implements the __ilshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___imod__(PyObject o)
Implements the __imod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___imul__(PyObject o)
Implements the __imul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___invert__()
Implements the __invert__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ior__(PyObject o)
Implements the __ior__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ipow__(PyObject o)
Implements the __ipow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___irshift__(PyObject o)
Implements the __irshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___isub__(PyObject o)
Implements the __isub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___itruediv__(PyObject o)
Implements the __itruediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ixor__(PyObject o)
Implements the __ixor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___lshift__(PyObject o)
Implements the __lshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___mod__(PyObject o)
Implements the __mod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___mul__(PyObject o)
Implements the __mul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___neg__()
Implements the __neg__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
static PyObject |
instance___new__(PyNewWrapper new_,
boolean init,
PyType subtype,
PyObject[] args,
String[] keywords) |
PyObject |
instance___or__(PyObject o)
Implements the __or__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___pos__()
Implements the __pos__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___pow__(PyObject o)
Implements the __pow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___radd__(PyObject o)
Implements the __radd__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rand__(PyObject o)
Implements the __rand__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rdiv__(PyObject o)
Implements the __rdiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rdivmod__(PyObject o)
Implements the __rdivmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rfloordiv__(PyObject o)
Implements the __rfloordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rlshift__(PyObject o)
Implements the __rlshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rmod__(PyObject o)
Implements the __rmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rmul__(PyObject o)
Implements the __rmul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___ror__(PyObject o)
Implements the __ror__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rpow__(PyObject o)
Implements the __rpow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rrshift__(PyObject o)
Implements the __rrshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rshift__(PyObject o)
Implements the __rshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rsub__(PyObject o)
Implements the __rsub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rtruediv__(PyObject o)
Implements the __rtruediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___rxor__(PyObject o)
Implements the __rxor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___sub__(PyObject o)
Implements the __sub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___truediv__(PyObject o)
Implements the __truediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
instance___xor__(PyObject o)
Implements the __xor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
PyObject |
invoke_ex(String name) |
PyObject |
invoke_ex(String name,
PyObject arg1) |
PyObject |
invoke_ex(String name,
PyObject[] args,
String[] keywords) |
PyObject |
invoke_ex(String name,
PyObject arg1,
PyObject arg2) |
PyObject |
invoke(String name)
Shortcut for calling a method on a PyObject with no args.
|
PyObject |
invoke(String name,
PyObject arg1)
Shortcut for calling a method on a PyObject with one arg.
|
PyObject |
invoke(String name,
PyObject arg1,
PyObject arg2)
Shortcut for calling a method on a PyObject with two args.
|
boolean |
isCallable() |
boolean |
isIndex()
Determine if this object can act as an index (implements __index__).
|
boolean |
isMappingType() |
boolean |
isNumberType() |
boolean |
isSequenceType() |
void |
noAttributeError(String name) |
boolean |
refersDirectlyTo(PyObject ob)
Optional operation.
|
String |
toString() |
int |
traverse(Visitproc visit,
Object arg)
Traverses all directly contained
PyObject s. |
__call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __coerce__, __delattr__, __delete__, __delitem__, __delslice__, __dir__, __ensure_finalizer__, __findattr__, __findattr__, __finditem__, __get__, __getattr__, __getattr__, __getitem__, __getnewargs__, __getslice__, __hash__, __idivmod__, __not__, __pow__, __reduce__, __reduce_ex__, __reduce_ex__, __set__, __setattr__, __setitem__, __setitem__, __setslice__, __trunc__, _add, _and, _callextra, _cmp, _div, _divmod, _doget, _doget, _doset, _eq, _floordiv, _ge, _gt, _iadd, _iand, _idiv, _idivmod, _ifloordiv, _ilshift, _imod, _imul, _in, _ior, _ipow, _irshift, _is, _isnot, _isub, _itruediv, _ixor, _jcall, _jcallexc, _jthrow, _le, _lshift, _lt, _mod, _mul, _ne, _notin, _or, _pow, _rshift, _sub, _truediv, _xor, asDouble, asIndex, asIndex, asInt, asInt, asIterable, asLong, asLong, asName, asName, asString, asString, asStringOrNull, asStringOrNull, bit_length, conjugate, delDict, delType, dispatch__init__, equals, fastGetDict, getDict, getType, implementsDescrDelete, implementsDescrGet, implementsDescrSet, invoke, invoke, invoke, isDataDescr, isInteger, object___subclasshook__, readonlyAttributeError, setDict, setType
public static final PyType TYPE
public transient PyClass instclass
public PyObject __dict__
public PyInstance()
public PyInstance(PyClass iclass)
public static PyObject instance___new__(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, String[] keywords)
public PyClass fastGetClass()
fastGetClass
in class PyObject
public Object __tojava__(Class c)
PyObject
Py.NoConversion
if this PyObject
can not be converted to the
desired Java class.__tojava__
in class PyObject
c
- the Class to convert this PyObject
to.public PyObject __findattr_ex__(String name)
PyObject
PyObject.__getattr__(String)
or
PyObject.__findattr__(String)
. Both methods have a clear policy for
failed lookups.__findattr_ex__
in class PyObject
public boolean isCallable()
isCallable
in class PyObject
public boolean isNumberType()
isNumberType
in class PyObject
public boolean isMappingType()
isMappingType
in class PyObject
public boolean isSequenceType()
isSequenceType
in class PyObject
public boolean isIndex()
PyObject
public PyObject invoke(String name)
PyObject
public PyObject invoke(String name, PyObject arg1)
PyObject
public PyObject invoke(String name, PyObject arg1, PyObject arg2)
PyObject
public void noAttributeError(String name)
noAttributeError
in class PyObject
public void __setattr__(String name, PyObject value)
PyObject
__setattr__
in class PyObject
name
- the name whose value will be set -
must be an interned string .value
- the value to set this name toPyObject.__setattr__(PyString, PyObject)
public void __delattr__(String name)
PyObject
__delattr__(PyString name)
with the appropriate args.
The only reason to override this method is for performance.__delattr__
in class PyObject
name
- the name which will be removed -
must be an interned string .PyObject.__delattr__(PyString)
public PyObject __call__(PyObject[] args, String[] keywords)
PyObject
public PyString __repr__()
PyObject
PyObject
is to
override the standard Java toString
method.public PyString __str__()
PyObject
PyObject
is to
override the standard Java toString
method.public PyUnicode __unicode__()
__unicode__
in class PyObject
public int __cmp__(PyObject other)
PyObject
public PyObject __lt__(PyObject o)
PyObject
public PyObject __le__(PyObject o)
PyObject
public PyObject __gt__(PyObject o)
PyObject
public PyObject __ge__(PyObject o)
PyObject
public PyObject __eq__(PyObject o)
PyObject
public PyObject __ne__(PyObject o)
PyObject
public boolean __nonzero__()
PyObject
PyObject
is considered true.__nonzero__
in class PyObject
public int __len__()
PyObject
public PyObject __finditem__(int key)
PyObject
int
as the key. By default, this method will call
__finditem__(PyObject key)
with the appropriate args.
The only reason to override this method is for performance.__finditem__
in class PyObject
key
- the key to lookup in this sequence.PyObject.__finditem__(PyObject)
public PyObject __finditem__(PyObject key)
PyObject
__finditem__
in class PyObject
key
- the key to lookup in this containerpublic PyObject __getitem__(PyObject key)
PyObject
__finditem__
method instead.__getitem__
in class PyObject
key
- the key to lookup in this container.PyObject.__finditem__(PyObject)
public void __setitem__(PyObject key, PyObject value)
PyObject
__setitem__
in class PyObject
key
- the key whose value will be setvalue
- the value to set this key topublic void __delitem__(PyObject key)
PyObject
__delitem__
in class PyObject
key
- the key to be removed from the containerpublic PyObject __getslice__(PyObject start, PyObject stop, PyObject step)
__getslice__
in class PyObject
public void __setslice__(PyObject start, PyObject stop, PyObject step, PyObject value)
__setslice__
in class PyObject
public void __delslice__(PyObject start, PyObject stop, PyObject step)
__delslice__
in class PyObject
public PyObject __iter__()
PyObject
If a PyObject subclass should support iteration based in the __finditem__() method, it must supply an implementation of __iter__() like this:
public PyObject __iter__() { return new PySequenceIter(this); }When iterating over a python sequence from java code, it should be done with code like this:
for (PyObject item : seq.asIterable()) { // Do somting with item }
public PyObject __iternext__()
PyObject
__iternext__
in class PyObject
public boolean __contains__(PyObject o)
PyObject
__contains__
in class PyObject
o
- the element to search for in this container.public Object __coerce_ex__(PyObject o)
PyObject
__coerce_ex__
in class PyObject
o
- the other object involved in the coercionpublic PyObject __index__()
PyObject
public PyObject __format__(PyObject formatSpec)
__format__
in class PyObject
public PyString __hex__()
PyObject
public PyString __oct__()
PyObject
public PyObject __int__()
PyObject
public PyFloat __float__()
PyObject
public PyObject __long__()
PyObject
public PyComplex __complex__()
PyObject
__complex__
in class PyObject
public PyObject __pos__()
PyObject
public PyObject instance___pos__()
public PyObject __neg__()
PyObject
public PyObject instance___neg__()
public PyObject __abs__()
PyObject
public PyObject instance___abs__()
public PyObject __invert__()
PyObject
__invert__
in class PyObject
public PyObject instance___invert__()
public PyObject __add__(PyObject o)
PyObject
public PyObject instance___add__(PyObject o)
public PyObject __radd__(PyObject o)
PyObject
public PyObject instance___radd__(PyObject o)
public PyObject __iadd__(PyObject o)
PyObject
public PyObject instance___iadd__(PyObject o)
public PyObject __sub__(PyObject o)
PyObject
public PyObject instance___sub__(PyObject o)
public PyObject __rsub__(PyObject o)
PyObject
public PyObject instance___rsub__(PyObject o)
public PyObject __isub__(PyObject o)
PyObject
public PyObject instance___isub__(PyObject o)
public PyObject __mul__(PyObject o)
PyObject
public PyObject instance___mul__(PyObject o)
public PyObject __rmul__(PyObject o)
PyObject
public PyObject instance___rmul__(PyObject o)
public PyObject __imul__(PyObject o)
PyObject
public PyObject instance___imul__(PyObject o)
public PyObject __div__(PyObject o)
PyObject
public PyObject instance___div__(PyObject o)
public PyObject __rdiv__(PyObject o)
PyObject
public PyObject instance___rdiv__(PyObject o)
public PyObject __idiv__(PyObject o)
PyObject
public PyObject instance___idiv__(PyObject o)
public PyObject __floordiv__(PyObject o)
PyObject
__floordiv__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___floordiv__(PyObject o)
public PyObject __rfloordiv__(PyObject o)
PyObject
__rfloordiv__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).public PyObject instance___rfloordiv__(PyObject o)
public PyObject __ifloordiv__(PyObject o)
PyObject
__ifloordiv__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___ifloordiv__(PyObject o)
public PyObject __truediv__(PyObject o)
PyObject
__truediv__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___truediv__(PyObject o)
public PyObject __rtruediv__(PyObject o)
PyObject
__rtruediv__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).public PyObject instance___rtruediv__(PyObject o)
public PyObject __itruediv__(PyObject o)
PyObject
__itruediv__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___itruediv__(PyObject o)
public PyObject __mod__(PyObject o)
PyObject
public PyObject instance___mod__(PyObject o)
public PyObject __rmod__(PyObject o)
PyObject
public PyObject instance___rmod__(PyObject o)
public PyObject __imod__(PyObject o)
PyObject
public PyObject instance___imod__(PyObject o)
public PyObject __divmod__(PyObject o)
PyObject
__divmod__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___divmod__(PyObject o)
public PyObject __rdivmod__(PyObject o)
PyObject
__rdivmod__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).public PyObject instance___rdivmod__(PyObject o)
public PyObject __pow__(PyObject o)
PyObject
public PyObject instance___pow__(PyObject o)
public PyObject __rpow__(PyObject o)
PyObject
public PyObject instance___rpow__(PyObject o)
public PyObject __ipow__(PyObject o)
PyObject
public PyObject instance___ipow__(PyObject o)
public PyObject __lshift__(PyObject o)
PyObject
__lshift__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___lshift__(PyObject o)
public PyObject __rlshift__(PyObject o)
PyObject
__rlshift__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).public PyObject instance___rlshift__(PyObject o)
public PyObject __ilshift__(PyObject o)
PyObject
__ilshift__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___ilshift__(PyObject o)
public PyObject __rshift__(PyObject o)
PyObject
__rshift__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___rshift__(PyObject o)
public PyObject __rrshift__(PyObject o)
PyObject
__rrshift__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).public PyObject instance___rrshift__(PyObject o)
public PyObject __irshift__(PyObject o)
PyObject
__irshift__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).public PyObject instance___irshift__(PyObject o)
public PyObject __and__(PyObject o)
PyObject
public PyObject instance___and__(PyObject o)
public PyObject __rand__(PyObject o)
PyObject
public PyObject instance___rand__(PyObject o)
public PyObject __iand__(PyObject o)
PyObject
public PyObject instance___iand__(PyObject o)
public PyObject __or__(PyObject o)
PyObject
public PyObject instance___or__(PyObject o)
public PyObject __ror__(PyObject o)
PyObject
public PyObject instance___ror__(PyObject o)
public PyObject __ior__(PyObject o)
PyObject
public PyObject instance___ior__(PyObject o)
public PyObject __xor__(PyObject o)
PyObject
public PyObject instance___xor__(PyObject o)
public PyObject __rxor__(PyObject o)
PyObject
public PyObject instance___rxor__(PyObject o)
public PyObject __ixor__(PyObject o)
PyObject
public PyObject instance___ixor__(PyObject o)
public void __del__()
__del__
in interface FinalizablePyObject
public int traverse(Visitproc visit, Object arg)
Traverseproc
PyObject
s.
Like in CPython, arg
must be passed
unmodified to visit
as its second parameter.
If Visitproc.visit(PyObject, Object)
returns
nonzero, this return value
must be returned immediately by traverse.
Visitproc.visit(PyObject, Object)
must not be
called with a null
PyObject-argument.traverse
in interface Traverseproc
public boolean refersDirectlyTo(PyObject ob)
Traverseproc
Traverseproc.traverse(Visitproc, Object)
with
a visitproc that just watches out for ob
.
Must return false
if ob
is null
.refersDirectlyTo
in interface Traverseproc