/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.9
Include/code.h
20 строк
318 B
Victor Stinner
bpo-40421: Add Include/cpython/code.h header file (GH-19756)
28 апр 2020, 18:07
Не верифицирован
28 апр 2020, 18:07
b8f704d
Код
Авторство
О чём код?
/* Definitions for bytecode */ #ifndef Py_CODE_H #define Py_CODE_H #ifdef __cplusplus extern "C" { #endif typedef struct PyCodeObject PyCodeObject; #ifndef Py_LIMITED_API # define Py_CPYTHON_CODE_H # include "cpython/code.h" # undef Py_CPYTHON_CODE_H #endif #ifdef __cplusplus } #endif #endif /* !Py_CODE_H */