Class PyInstance

java.lang.Object
org.python.core.PyObject
org.python.core.PyInstance
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
PyFinalizableInstance, PyJavaInstance

public class PyInstance extends PyObject
A python class instance.
See Also:
  • Field Details

    • instclass

      public transient PyClass instclass
    • __dict__

      public PyObject __dict__
      The namespace of this instance. Contains all instance attributes.
  • Constructor Details

    • PyInstance

      public PyInstance(PyClass iclass, PyObject dict)
      Returns a new
    • PyInstance

      public PyInstance(PyClass iclass)
    • PyInstance

      public PyInstance()
  • Method Details

    • fastGetClass

      public PyObject fastGetClass()
      Overrides:
      fastGetClass in class PyObject
    • __tojava__

      public Object __tojava__(Class c)
      Description copied from class: PyObject
      Equivalent to the Jython __tojava__ method. Tries to coerce this object to an instance of the requested Java class. Returns the special object Py.NoConversion if this PyObject can not be converted to the desired Java class.
      Overrides:
      __tojava__ in class PyObject
      Parameters:
      c - the Class to convert this PyObject to.
    • __init__

      public void __init__(PyObject[] args, String[] keywords)
    • __jfindattr__

      public PyObject __jfindattr__(String name)
    • __findattr__

      public PyObject __findattr__(String name)
      Description copied from class: PyObject
      A variant of the __findattr__ method which accepts a Java String as the name. Warning: name must be an interned string!
      Overrides:
      __findattr__ in class PyObject
      Parameters:
      name - the name to lookup in this namespace must be an interned string .
      Returns:
      the value corresponding to name or null if name is not found
      See Also:
    • __findattr__

      public PyObject __findattr__(String name, boolean stopAtJava)
    • invoke

      public PyObject invoke(String name)
      Description copied from class: PyObject
      Shortcut for calling a method on a PyObject with no args.
      Overrides:
      invoke in class PyObject
      Parameters:
      name - the name of the method to call. This must be an interned string!
      Returns:
      the result of calling the method name with no args
    • invoke

      public PyObject invoke(String name, PyObject arg1)
      Description copied from class: PyObject
      Shortcut for calling a method on a PyObject with one arg.
      Overrides:
      invoke in class PyObject
      Parameters:
      name - the name of the method to call. This must be an interned string!
      arg1 - the one argument of the method.
      Returns:
      the result of calling the method name with arg1
    • invoke

      public PyObject invoke(String name, PyObject arg1, PyObject arg2)
      Description copied from class: PyObject
      Shortcut for calling a method on a PyObject with two args.
      Overrides:
      invoke in class PyObject
      Parameters:
      name - the name of the method to call. This must be an interned string!
      arg1 - the first argument of the method.
      arg2 - the second argument of the method.
      Returns:
      the result of calling the method name with arg1 and arg2
    • __setattr__

      public void __setattr__(String name, PyObject value)
      Description copied from class: PyObject
      A variant of the __setattr__ method which accepts a String as the key. This String must be interned.
      Overrides:
      __setattr__ in class PyObject
      Parameters:
      name - the name whose value will be set - must be an interned string .
      value - the value to set this name to
      See Also:
    • __delattr__

      public void __delattr__(String name)
      Description copied from class: PyObject
      A variant of the __delattr__ method which accepts a String as the key. This String must be interned. By default, this will call __delattr__(PyString name) with the appropriate args. The only reason to override this method is for performance.
      Overrides:
      __delattr__ in class PyObject
      Parameters:
      name - the name which will be removed - must be an interned string .
      See Also:
    • invoke_ex

      public PyObject invoke_ex(String name, PyObject[] args, String[] keywords)
    • invoke_ex

      public PyObject invoke_ex(String name)
    • invoke_ex

      public PyObject invoke_ex(String name, PyObject arg1)
    • invoke_ex

      public PyObject invoke_ex(String name, PyObject arg1, PyObject arg2)
    • __call__

      public PyObject __call__(PyObject[] args, String[] keywords)
      Description copied from class: PyObject
      The basic method to override when implementing a callable object. The first len(args)-len(keywords) members of args[] are plain arguments. The last len(keywords) arguments are the values of the keyword arguments.
      Overrides:
      __call__ in class PyObject
      Parameters:
      args - all arguments to the function (including keyword arguments).
      keywords - the keywords used for all keyword arguments.
    • __repr__

      public PyString __repr__()
      Description copied from class: PyObject
      Equivalent to the standard Python __repr__ method. This method should not typically need to be overrriden. The easiest way to configure the string representation of a PyObject is to override the standard Java toString method.
      Overrides:
      __repr__ in class PyObject
    • __str__

      public PyString __str__()
      Description copied from class: PyObject
      Equivalent to the standard Python __str__ method. This method should not typically need to be overridden. The easiest way to configure the string representation of a PyObject is to override the standard Java toString method.
      Overrides:
      __str__ in class PyObject
    • __unicode__

      public PyUnicode __unicode__()
      Overrides:
      __unicode__ in class PyObject
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class PyObject
    • __cmp__

      public int __cmp__(PyObject other)
      Description copied from class: PyObject
      Equivalent to the standard Python __cmp__ method.
      Overrides:
      __cmp__ in class PyObject
      Parameters:
      other - the object to compare this with.
      Returns:
      -1 if this < 0; 0 if this == o; +1 if this > o; -2 if no comparison is implemented
    • __lt__

      public PyObject __lt__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __lt__ method.
      Overrides:
      __lt__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __le__

      public PyObject __le__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __le__ method.
      Overrides:
      __le__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __gt__

      public PyObject __gt__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __gt__ method.
      Overrides:
      __gt__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __ge__

      public PyObject __ge__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __ge__ method.
      Overrides:
      __ge__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __eq__

      public PyObject __eq__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __eq__ method.
      Overrides:
      __eq__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __ne__

      public PyObject __ne__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __ne__ method.
      Overrides:
      __ne__ in class PyObject
      Parameters:
      o - the object to compare this with.
      Returns:
      the result of the comparison.
    • __nonzero__

      public boolean __nonzero__()
      Description copied from class: PyObject
      Equivalent to the standard Python __nonzero__ method. Returns whether of not a given PyObject is considered true.
      Overrides:
      __nonzero__ in class PyObject
    • __len__

      public int __len__()
      Description copied from class: PyObject
      Equivalent to the standard Python __len__ method. Part of the mapping discipline.
      Overrides:
      __len__ in class PyObject
      Returns:
      the length of the object
    • __finditem__

      public PyObject __finditem__(int key)
      Description copied from class: PyObject
      A variant of the __finditem__ method which accepts a primitive 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.
      Overrides:
      __finditem__ in class PyObject
      Parameters:
      key - the key to lookup in this sequence.
      Returns:
      the value corresponding to key or null if key is not found.
      See Also:
    • __finditem__

      public PyObject __finditem__(PyObject key)
      Description copied from class: PyObject
      Very similar to the standard Python __getitem__ method. Instead of throwing a KeyError if the item isn't found, this just returns null. Classes that wish to implement __getitem__ should override this method instead (with the appropriate semantics.
      Overrides:
      __finditem__ in class PyObject
      Parameters:
      key - the key to lookup in this container
      Returns:
      the value corresponding to key or null if key is not found
    • __getitem__

      public PyObject __getitem__(PyObject key)
      Description copied from class: PyObject
      Equivalent to the standard Python __getitem__ method. This method should not be overridden. Override the __finditem__ method instead.
      Overrides:
      __getitem__ in class PyObject
      Parameters:
      key - the key to lookup in this container.
      Returns:
      the value corresponding to that key.
      See Also:
    • __setitem__

      public void __setitem__(PyObject key, PyObject value)
      Description copied from class: PyObject
      Equivalent to the standard Python __setitem__ method.
      Overrides:
      __setitem__ in class PyObject
      Parameters:
      key - the key whose value will be set
      value - the value to set this key to
    • __delitem__

      public void __delitem__(PyObject key)
      Description copied from class: PyObject
      Equivalent to the standard Python __delitem__ method.
      Overrides:
      __delitem__ in class PyObject
      Parameters:
      key - the key to be removed from the container
    • __iter__

      public PyObject __iter__()
      Description copied from class: PyObject
      Return an iterator that is used to iterate the element of this sequence. From version 2.2, this method is the primary protocol for looping over sequences.

      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:
          PyObject iter = seq.__iter__();
          for (PyObject item; (item = iter.__iternext__()) != null;)  {
              // Do somting with item
          }
       
      Overrides:
      __iter__ in class PyObject
    • __iternext__

      public PyObject __iternext__()
      Description copied from class: PyObject
      Return the next element of the sequence that this is an iterator for. Returns null when the end of the sequence is reached.
      Overrides:
      __iternext__ in class PyObject
    • __contains__

      public boolean __contains__(PyObject o)
      Description copied from class: PyObject
      Equivalent to the standard Python __contains__ method.
      Overrides:
      __contains__ in class PyObject
      Parameters:
      o - the element to search for in this container.
      Returns:
      the result of the search.
    • __coerce_ex__

      public Object __coerce_ex__(PyObject o)
      Description copied from class: PyObject
      Implements numeric coercion
      Overrides:
      __coerce_ex__ in class PyObject
      Parameters:
      o - the other object involved in the coercion
      Returns:
      null if no coercion is possible; a single PyObject to use to replace o if this is unchanged; or a PyObject[2] consisting of replacements for this and o.
    • __hex__

      public PyString __hex__()
      Implements the __hex__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __hex__ in class PyObject
      Returns:
      a string representing this object as a hexadecimal number.
    • __oct__

      public PyString __oct__()
      Implements the __oct__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __oct__ in class PyObject
      Returns:
      a string representing this object as an octal number.
    • __int__

      public PyObject __int__()
      Implements the __int__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __int__ in class PyObject
      Returns:
      an integer corresponding to the value of this object.
    • __float__

      public PyFloat __float__()
      Implements the __float__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __float__ in class PyObject
      Returns:
      a float corresponding to the value of this object.
    • __long__

      public PyLong __long__()
      Implements the __long__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __long__ in class PyObject
      Returns:
      a PyLong corresponding to the value of this object.
    • __complex__

      public PyComplex __complex__()
      Implements the __complex__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __complex__ in class PyObject
      Returns:
      a complex number corresponding to the value of this object.
    • __pos__

      public PyObject __pos__()
      Implements the __pos__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __pos__ in class PyObject
      Returns:
      +this.
    • __neg__

      public PyObject __neg__()
      Implements the __neg__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __neg__ in class PyObject
      Returns:
      -this.
    • __abs__

      public PyObject __abs__()
      Implements the __abs__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __abs__ in class PyObject
      Returns:
      abs(this).
    • __invert__

      public PyObject __invert__()
      Implements the __invert__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __invert__ in class PyObject
      Returns:
      ~this.
    • __add__

      public PyObject __add__(PyObject o)
      Implements the __add__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __add__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the add, or null if this operation is not defined
    • __radd__

      public PyObject __radd__(PyObject o)
      Implements the __radd__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __radd__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the add, or null if this operation is not defined.
    • __iadd__

      public PyObject __iadd__(PyObject o)
      Implements the __iadd__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __iadd__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the add, or null if this operation is not defined
    • __sub__

      public PyObject __sub__(PyObject o)
      Implements the __sub__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __sub__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the sub, or null if this operation is not defined
    • __rsub__

      public PyObject __rsub__(PyObject o)
      Implements the __rsub__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rsub__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the sub, or null if this operation is not defined.
    • __isub__

      public PyObject __isub__(PyObject o)
      Implements the __isub__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __isub__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the sub, or null if this operation is not defined
    • __mul__

      public PyObject __mul__(PyObject o)
      Implements the __mul__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __mul__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the mul, or null if this operation is not defined
    • __rmul__

      public PyObject __rmul__(PyObject o)
      Implements the __rmul__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rmul__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the mul, or null if this operation is not defined.
    • __imul__

      public PyObject __imul__(PyObject o)
      Implements the __imul__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __imul__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the mul, or null if this operation is not defined
    • __div__

      public PyObject __div__(PyObject o)
      Implements the __div__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __div__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the div, or null if this operation is not defined
    • __rdiv__

      public PyObject __rdiv__(PyObject o)
      Implements the __rdiv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rdiv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the div, or null if this operation is not defined.
    • __idiv__

      public PyObject __idiv__(PyObject o)
      Implements the __idiv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __idiv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the div, or null if this operation is not defined
    • __floordiv__

      public PyObject __floordiv__(PyObject o)
      Implements the __floordiv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __floordiv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the floordiv, or null if this operation is not defined
    • __rfloordiv__

      public PyObject __rfloordiv__(PyObject o)
      Implements the __rfloordiv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rfloordiv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the floordiv, or null if this operation is not defined.
    • __ifloordiv__

      public PyObject __ifloordiv__(PyObject o)
      Implements the __ifloordiv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ifloordiv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the floordiv, or null if this operation is not defined
    • __truediv__

      public PyObject __truediv__(PyObject o)
      Implements the __truediv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __truediv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the truediv, or null if this operation is not defined
    • __rtruediv__

      public PyObject __rtruediv__(PyObject o)
      Implements the __rtruediv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rtruediv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the truediv, or null if this operation is not defined.
    • __itruediv__

      public PyObject __itruediv__(PyObject o)
      Implements the __itruediv__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __itruediv__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the truediv, or null if this operation is not defined
    • __mod__

      public PyObject __mod__(PyObject o)
      Implements the __mod__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __mod__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the mod, or null if this operation is not defined
    • __rmod__

      public PyObject __rmod__(PyObject o)
      Implements the __rmod__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rmod__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the mod, or null if this operation is not defined.
    • __imod__

      public PyObject __imod__(PyObject o)
      Implements the __imod__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __imod__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the mod, or null if this operation is not defined
    • __divmod__

      public PyObject __divmod__(PyObject o)
      Implements the __divmod__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __divmod__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the divmod, or null if this operation is not defined
    • __rdivmod__

      public PyObject __rdivmod__(PyObject o)
      Implements the __rdivmod__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rdivmod__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the divmod, or null if this operation is not defined.
    • __pow__

      public PyObject __pow__(PyObject o)
      Implements the __pow__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __pow__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the pow, or null if this operation is not defined
    • __rpow__

      public PyObject __rpow__(PyObject o)
      Implements the __rpow__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rpow__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the pow, or null if this operation is not defined.
    • __ipow__

      public PyObject __ipow__(PyObject o)
      Implements the __ipow__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ipow__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the pow, or null if this operation is not defined
    • __lshift__

      public PyObject __lshift__(PyObject o)
      Implements the __lshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __lshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the lshift, or null if this operation is not defined
    • __rlshift__

      public PyObject __rlshift__(PyObject o)
      Implements the __rlshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rlshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the lshift, or null if this operation is not defined.
    • __ilshift__

      public PyObject __ilshift__(PyObject o)
      Implements the __ilshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ilshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the lshift, or null if this operation is not defined
    • __rshift__

      public PyObject __rshift__(PyObject o)
      Implements the __rshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the rshift, or null if this operation is not defined
    • __rrshift__

      public PyObject __rrshift__(PyObject o)
      Implements the __rrshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rrshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the rshift, or null if this operation is not defined.
    • __irshift__

      public PyObject __irshift__(PyObject o)
      Implements the __irshift__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __irshift__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the rshift, or null if this operation is not defined
    • __and__

      public PyObject __and__(PyObject o)
      Implements the __and__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __and__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the and, or null if this operation is not defined
    • __rand__

      public PyObject __rand__(PyObject o)
      Implements the __rand__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rand__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the and, or null if this operation is not defined.
    • __iand__

      public PyObject __iand__(PyObject o)
      Implements the __iand__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __iand__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the and, or null if this operation is not defined
    • __or__

      public PyObject __or__(PyObject o)
      Implements the __or__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __or__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the or, or null if this operation is not defined
    • __ror__

      public PyObject __ror__(PyObject o)
      Implements the __ror__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ror__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the or, or null if this operation is not defined.
    • __ior__

      public PyObject __ior__(PyObject o)
      Implements the __ior__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ior__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the or, or null if this operation is not defined
    • __xor__

      public PyObject __xor__(PyObject o)
      Implements the __xor__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __xor__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the xor, or null if this operation is not defined
    • __rxor__

      public PyObject __rxor__(PyObject o)
      Implements the __rxor__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __rxor__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the left-hand operand).
      Returns:
      the result of the xor, or null if this operation is not defined.
    • __ixor__

      public PyObject __ixor__(PyObject o)
      Implements the __ixor__ method by looking it up in the instance's dictionary and calling it if it is found.
      Overrides:
      __ixor__ in class PyObject
      Parameters:
      o - the object to perform this binary operation with (the right-hand operand).
      Returns:
      the result of the xor, or null if this operation is not defined