https://github.com/python/cpython
Raw File
Tip revision: c4e4b91557f18f881f393d80f5d8ce29de760e67 authored by Pablo Galindo on 03 February 2022, 18:34:09 UTC
Python 3.11.0a5
Tip revision: c4e4b91
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