Home
last modified time | relevance | path

Searched refs:im_class (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Include/
Dclassobject.h35 PyObject *im_class; /* The class that asked for the method */ member
74 (((PyMethodObject *)meth) -> im_class)
/external/tensorflow/tensorflow/python/keras/preprocessing/
Dimage_test.py184 im_class = count % num_classes
186 classpaths = paths[im_class]
269 im_class = count % num_classes
271 classpaths = paths[im_class]
/external/tensorflow/tensorflow/python/util/
Ddecorator_utils.py31 return function.im_class.__name__ + '.' + function.__name__
/external/python/cpython2/Lib/test/
Dtest_funcattrs.py169 self.assertEqual(self.f.a.im_class, self.f)
170 self.assertEqual(self.fi.a.im_class, self.f)
Dtest_pyclbr.py87 objname = "_%s%s" % (obj.im_class.__name__, objname)
Dtest_descr.py4627 self.assertIs(l.__add__.im_class, list)
/external/python/cpython2/Objects/
Dclassobject.c165 return ((PyMethodObject *)im)->im_class; in PyMethod_Class()
2271 im->im_class = klass; in PyMethod_New()
2283 {"im_class", T_OBJECT, OFF(im_class), READONLY|RESTRICTED,
2387 Py_XDECREF(im->im_class); in instancemethod_dealloc()
2419 PyObject *klass = a->im_class; in instancemethod_repr()
2498 Py_VISIT(im->im_class); in instancemethod_traverse()
/external/tensorflow/tensorflow/python/keras/utils/
Dmetrics_utils.py132 cls = method.im_class
/external/python/cpython2/Lib/multiprocessing/
Dforking.py72 return getattr, (m.im_class, m.im_func.func_name)
/external/python/cpython2/Lib/
Dcopy.py264 return type(x)(x.im_func, deepcopy(x.im_self, memo), x.im_class)
Dpydoc.py911 imclass = object.im_class
1301 imclass = object.im_class
/external/python/cpython2/Doc/library/
Dinspect.rst57 | | im_class | class object that asked | \(1) |
222 :attr:`im_class` used to refer to the class that defined the method.
/external/python/cpython2/Doc/reference/
Ddatamodel.rst572 :attr:`im_func` is the function object; :attr:`im_class` is the class of
605 single: im_class (method attribute)
615 :attr:`im_class` attribute is the class from which the retrieval takes
626 single: im_class (method attribute)
636 be an instance of the proper class (:attr:`im_class`) or of a derived class
803 transformed into an unbound user-defined method object whose :attr:`im_class`
850 user-defined method object whose :attr:`im_class` attribute is :class:`C` and
/external/python/cpython3/Lib/test/
Dtest_descr.py4372 self.assertIs(l.__add__.im_class, list)
/external/python/cpython2/Misc/
Dcheatsheet1266 im_class (class, R/O): class defining the method (may be a base class)
DHISTORY1306 with im_class == im_self == NULL, which caused a crash when called.
/external/python/cpython3/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.