123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #ifndef Py_LIMITED_API
- #ifndef Py_CODE_H
- #define Py_CODE_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- PyObject_HEAD
- int co_argcount;
- int co_kwonlyargcount;
- int co_nlocals;
- int co_stacksize;
- int co_flags;
- PyObject *co_code;
- PyObject *co_consts;
- PyObject *co_names;
- PyObject *co_varnames;
- PyObject *co_freevars;
- PyObject *co_cellvars;
-
- unsigned char *co_cell2arg;
- PyObject *co_filename;
- PyObject *co_name;
- int co_firstlineno;
- PyObject *co_lnotab;
- void *co_zombieframe;
- PyObject *co_weakreflist;
- } PyCodeObject;
- #define CO_OPTIMIZED 0x0001
- #define CO_NEWLOCALS 0x0002
- #define CO_VARARGS 0x0004
- #define CO_VARKEYWORDS 0x0008
- #define CO_NESTED 0x0010
- #define CO_GENERATOR 0x0020
- #define CO_NOFREE 0x0040
- #define CO_COROUTINE 0x0080
- #define CO_ITERABLE_COROUTINE 0x0100
- #if 0
- #define CO_GENERATOR_ALLOWED 0x1000
- #endif
- #define CO_FUTURE_DIVISION 0x2000
- #define CO_FUTURE_ABSOLUTE_IMPORT 0x4000
- #define CO_FUTURE_WITH_STATEMENT 0x8000
- #define CO_FUTURE_PRINT_FUNCTION 0x10000
- #define CO_FUTURE_UNICODE_LITERALS 0x20000
- #define CO_FUTURE_BARRY_AS_BDFL 0x40000
- #define CO_FUTURE_GENERATOR_STOP 0x80000
- #define CO_CELL_NOT_AN_ARG 255
- #define PY_PARSER_REQUIRES_FUTURE_KEYWORD
- #define CO_MAXBLOCKS 20
- PyAPI_DATA(PyTypeObject) PyCode_Type;
- #define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type)
- #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars))
- PyAPI_FUNC(PyCodeObject *) PyCode_New(
- int, int, int, int, int, PyObject *, PyObject *,
- PyObject *, PyObject *, PyObject *, PyObject *,
- PyObject *, PyObject *, int, PyObject *);
-
- PyAPI_FUNC(PyCodeObject *)
- PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
- PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
- typedef struct _addr_pair {
- int ap_lower;
- int ap_upper;
- } PyAddrPair;
- #ifndef Py_LIMITED_API
- PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,
- int lasti, PyAddrPair *bounds);
- PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj);
- #endif
- PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
- PyObject *names, PyObject *lineno_obj);
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|