Staging
v0.5.1
https://github.com/python/cpython
Revision 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC, committed by GitHub on 07 December 2020, 10:56:20 UTC
1 parent c266736
Raw File
Tip revision: 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC
bpo-30459: Cast the result of PyCell_SET to void (GH-23654)
Tip revision: 0ef96c2
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