01: package org.python.core;
02:
03: public abstract class PyBuiltinMethod extends PyBuiltinFunction {
04:
05: public static final Class exposed_as = PyBuiltinFunction.class;
06:
07: protected PyBuiltinMethod(PyObject self, Info info) {
08: super (info);
09: this .self = self;
10: }
11:
12: public PyObject getSelf() {
13: return self;
14: }
15:
16: protected PyObject self;
17: }
|