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

Lines Matching refs:PyObject

16     PyObject *co_code;		/* instruction opcodes */
17 PyObject *co_consts; /* list (constants used) */
18 PyObject *co_names; /* list of strings (names used) */
19 PyObject *co_varnames; /* tuple of strings (local variable names) */
20 PyObject *co_freevars; /* tuple of strings (free variable names) */
21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */
23 PyObject *co_filename; /* string (where it was loaded from) */
24 PyObject *co_name; /* string (name, for reference) */
26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See
29 PyObject *co_weakreflist; /* to support weakrefs to code objects */
72 int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *,
73 PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *);
101 PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
102 PyObject *names, PyObject *lineno_obj);