Home | History | Annotate | Download | only in python2.7

Lines Matching refs:PyObject

14     PyObject	*cl_bases;	/* A tuple of class objects */
15 PyObject *cl_dict; /* A dictionary */
16 PyObject *cl_name; /* A string */
18 PyObject *cl_getattr;
19 PyObject *cl_setattr;
20 PyObject *cl_delattr;
21 PyObject *cl_weakreflist; /* List of weak references */
27 PyObject *in_dict; /* A dictionary */
28 PyObject *in_weakreflist; /* List of weak references */
33 PyObject *im_func; /* The callable object implementing the method */
34 PyObject *im_self; /* The instance it is bound to, or NULL */
35 PyObject *im_class; /* The class that asked for the method */
36 PyObject *im_weakreflist; /* List of weak references */
45 PyAPI_FUNC(PyObject *) PyClass_New(PyObject *, PyObject *, PyObject *);
46 PyAPI_FUNC(PyObject *) PyInstance_New(PyObject *, PyObject *,
47 PyObject *);
48 PyAPI_FUNC(PyObject *) PyInstance_NewRaw(PyObject *, PyObject *);
49 PyAPI_FUNC(PyObject *) PyMethod_New(PyObject *, PyObject *, PyObject *);
51 PyAPI_FUNC(PyObject *) PyMethod_Function(PyObject *);
52 PyAPI_FUNC(PyObject *) PyMethod_Self(PyObject *);
53 PyAPI_FUNC(PyObject *) PyMethod_Class(PyObject *);
65 PyAPI_FUNC(PyObject *) _PyInstance_Lookup(PyObject *pinst, PyObject *name);
76 PyAPI_FUNC(int) PyClass_IsSubclass(PyObject *, PyObject *);