Class PySuper

    • Constructor Detail

      • PySuper

        public PySuper()
      • PySuper

        public PySuper​(PyType subType)
    • Method Detail

      • super_init

        public void super_init​(PyObject[] args,
                               java.lang.String[] keywords)
      • getSelfClass

        public PyType getSelfClass()
      • getThisClass

        public PyType getThisClass()
      • __findattr__

        public PyObject __findattr__​(java.lang.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:
        PyObject.__findattr__(PyString)