Lines Matching refs:instance
99 /* Method objects are used for bound instance methods returned by
158 "the instance to which a method is bound"},
210 instance: object
213 Create a bound instance method object.
217 method_new_impl(PyTypeObject *type, PyObject *function, PyObject *instance)
225 if (instance == NULL || instance == Py_None) {
227 "instance must not be None");
231 return PyMethod_New(function, instance);
348 * instance method