Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 439c93d51f45c50541fc755b597725168ecd939a authored by Ɓukasz Langa on 11 August 2020, 17:14:36 UTC
Python 3.9.0rc1
Tip revision: 439c93d
frameobject.h
/* Frame object interface */

#ifndef Py_FRAMEOBJECT_H
#define Py_FRAMEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#include "pyframe.h"

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_FRAMEOBJECT_H
#  include  "cpython/frameobject.h"
#  undef Py_CPYTHON_FRAMEOBJECT_H
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_FRAMEOBJECT_H */
back to top