• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Definitions for bytecode */
2 
3 #ifndef Py_CODE_H
4 #define Py_CODE_H
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 typedef struct PyCodeObject PyCodeObject;
10 
11 #ifndef Py_LIMITED_API
12 #  define Py_CPYTHON_CODE_H
13 #  include  "cpython/code.h"
14 #  undef Py_CPYTHON_CODE_H
15 #endif
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 #endif /* !Py_CODE_H */
21