Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 216a4d83c3b72f4fdcd81b588dc3f42cc461739a authored by Miss Islington (bot) on 16 January 2019, 01:16:36 UTC
bpo-35746: Fix segfault in ssl's cert parser (GH-11569) (GH-11573)
Tip revision: 216a4d8
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