https://github.com/python/cpython
Raw File
Tip revision: 269bf56e3d352c415ec38f93017ba8e291ddb18a authored by Miss Islington (bot) on 22 October 2021, 18:29:52 UTC
bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)
Tip revision: 269bf56
code.h
/* 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 */
back to top