Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c8267ead691e5ded30b3ef94fa6bde40787ed9e4 authored by Éric Araujo on 12 November 2010, 22:26:37 UTC
Merged revisions 86438 via svnmerge from
Tip revision: c8267ea
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