Staging
v0.8.1
Revision 1244c816d7cdfa8a26d1671cab67122a8c5271a7 authored by pxinwr on 30 November 2020, 21:48:33 UTC, committed by GitHub on 30 November 2020, 21:48:33 UTC
1 parent 5c73afc
Raw File
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