Staging
v0.5.1
https://github.com/python/cpython
Revision 22b7616f26694ac707fd53ece500febfad665426 authored by Terry Jan Reedy on 23 September 2020, 15:17:26 UTC, committed by GitHub on 23 September 2020, 15:17:26 UTC
1 parent 7af072c
Raw File
Tip revision: 22b7616f26694ac707fd53ece500febfad665426 authored by Terry Jan Reedy on 23 September 2020, 15:17:26 UTC
bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)
Tip revision: 22b7616
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