Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Include/frameobject.h
12 views
1
/* Frame object interface */
2
3
#ifndef Py_FRAMEOBJECT_H
4
#define Py_FRAMEOBJECT_H
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
9
#include "pyframe.h"
10
11
#ifndef Py_LIMITED_API
12
# define Py_CPYTHON_FRAMEOBJECT_H
13
# include "cpython/frameobject.h"
14
# undef Py_CPYTHON_FRAMEOBJECT_H
15
#endif
16
17
#ifdef __cplusplus
18
}
19
#endif
20
#endif /* !Py_FRAMEOBJECT_H */
21
22