Home
last modified time | relevance | path

Searched refs:PyClass_Type (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dclassobject.h39 PyAPI_DATA(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;
41 #define PyClass_Check(op) ((op)->ob_type == &PyClass_Type)
/external/python/cpython2/Doc/c-api/
Dclass.rst20 .. c:var:: PyObject* PyClass_Type
/external/python/cpython2/PC/os2vacpp/
Dpython.def11 PyClass_Type
/external/python/cpython2/Objects/
Dclassobject.c115 op = PyObject_GC_New(PyClassObject, &PyClass_Type); in PyClass_New()
444 PyTypeObject PyClass_Type = { variable
615 &PyClass_Type, &klass, &dict)) in instance_new()
Dobject.c2185 if (PyType_Ready(&PyClass_Type) < 0) in _Py_ReadyTypes()
Dtypeobject.c2145 if (tmptype == &PyClass_Type) in type_new()
/external/python/cpython2/PC/os2emx/
Dpython27.def209 "PyClass_Type"
/external/python/cpython2/Python/
Dceval.c5000 metaclass = (PyObject *) &PyClass_Type; in build_class()
/external/python/cpython2/Modules/
DcPickle.c2735 if (type == &PyClass_Type) { in save()