Home
last modified time | relevance | path

Searched refs:im_self (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Dclassobject.c31 return ((PyMethodObject *)im)->im_self; in PyMethod_Self()
113 im->im_self = self; in PyMethod_New()
149 {"__self__", T_OBJECT, MO_OFF(im_self), READONLY,
241 Py_XDECREF(im->im_self); in method_dealloc()
262 eq = (a->im_self == b->im_self); in method_richcompare()
277 PyObject *self = a->im_self; in method_repr()
306 x = _Py_HashPointer(a->im_self); in method_hash()
320 Py_VISIT(im->im_self); in method_traverse()
/third_party/python/Include/
Dclassobject.h15 PyObject *im_self; /* The instance it is bound to */ member
34 (((PyMethodObject *)meth) -> im_self)
/third_party/boost/libs/python/src/
Dwrapper.cpp28 && ((PyMethodObject*)m.get())->im_self == this->m_self in get_override()
/third_party/python/Doc/whatsnew/
D2.6.rst1680 comprising the method; the new synonym for :attr:`im_self` is
/third_party/python/Misc/
DHISTORY17122 im_class attribute is removed and im_func + im_self are renamed to
18690 with im_class == im_self == NULL, which caused a crash when called.