blob: 1460e2210e3173dfed15252a243a1463bba2da7e [file] [log] [blame]
Guido van Rossum3f5da241990-12-20 15:06:42 +00001/* Frame object interface */
2
Fred Drakeea9cb5a2000-07-09 00:20:36 +00003#ifndef Py_FRAMEOBJECT_H
4#define Py_FRAMEOBJECT_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
Nick Coghlan1e420f82020-01-21 08:21:35 +10009/* There are currently no frame related APIs in the stable ABI
10 * (they're all in the full CPython-specific API)
11 */
Guido van Rossum3f5da241990-12-20 15:06:42 +000012
Nick Coghlan1e420f82020-01-21 08:21:35 +100013#ifndef Py_LIMITED_API
14# define Py_CPYTHON_FRAMEOBJECT_H
15# include "cpython/frameobject.h"
16# undef Py_CPYTHON_FRAMEOBJECT_H
17#endif
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +000018
Guido van Rossuma3309961993-07-28 09:05:47 +000019#ifdef __cplusplus
20}
21#endif
22#endif /* !Py_FRAMEOBJECT_H */