123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef Py_CODE_H
- #define Py_CODE_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- PyObject_HEAD
- PyObject *co_name;
- PyObject *co_filename;
- int co_argcount;
- int co_flags;
- } PyCodeObject;
- /* Masks for co_flags above */
- /* These values are also in funcobject.py */
- #define CO_OPTIMIZED 0x0001
- #define CO_NEWLOCALS 0x0002
- #define CO_VARARGS 0x0004
- #define CO_VARKEYWORDS 0x0008
- #define CO_NESTED 0x0010
- #define CO_GENERATOR 0x0020
-
- /* The CO_COROUTINE flag is set for coroutine functions (defined with
- ``async def`` keywords) */
- #define CO_COROUTINE 0x0080
- #define CO_ITERABLE_COROUTINE 0x0100
- #define CO_FUTURE_DIVISION 0x02000
- #define CO_FUTURE_ABSOLUTE_IMPORT 0x04000
- #define CO_FUTURE_WITH_STATEMENT 0x08000
- #define CO_FUTURE_PRINT_FUNCTION 0x10000
- #define CO_FUTURE_UNICODE_LITERALS 0x20000
- #ifdef __cplusplus
- }
- #endif
- #endif /* !Py_CODE_H */
|