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

Lines Matching refs:PyObject

23     PyObject *func_code;	/* A code object */
24 PyObject *func_globals; /* A dictionary (other mappings won't do) */
25 PyObject *func_defaults; /* NULL or a tuple */
26 PyObject *func_closure; /* NULL or a tuple of cell objects */
27 PyObject *func_doc; /* The __doc__ attribute, can be anything */
28 PyObject *func_name; /* The __name__ attribute, a string object */
29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */
30 PyObject *func_weakreflist; /* List of weak references */
31 PyObject *func_module; /* The __module__ attribute, can be anything */
44 PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *);
45 PyAPI_FUNC(PyObject *) PyFunction_GetCode(PyObject *);
46 PyAPI_FUNC(PyObject *) PyFunction_GetGlobals(PyObject *);
47 PyAPI_FUNC(PyObject *) PyFunction_GetModule(PyObject *);
48 PyAPI_FUNC(PyObject *) PyFunction_GetDefaults(PyObject *);
49 PyAPI_FUNC(int) PyFunction_SetDefaults(PyObject *, PyObject *);
50 PyAPI_FUNC(PyObject *) PyFunction_GetClosure(PyObject *);
51 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
70 PyAPI_FUNC(PyObject *) PyClassMethod_New(PyObject *);
71 PyAPI_FUNC(PyObject *) PyStaticMethod_New(PyObject *);