Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1 | /* Frame object interface */ |
| 2 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 3 | #ifndef Py_FRAMEOBJECT_H |
| 4 | #define Py_FRAMEOBJECT_H |
| 5 | #ifdef __cplusplus |
| 6 | extern "C" { |
| 7 | #endif |
| 8 | |
Nick Coghlan | 1e420f8 | 2020-01-21 08:21:35 +1000 | [diff] [blame] | 9 | /* There are currently no frame related APIs in the stable ABI |
| 10 | * (they're all in the full CPython-specific API) |
| 11 | */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 12 | |
Nick Coghlan | 1e420f8 | 2020-01-21 08:21:35 +1000 | [diff] [blame] | 13 | #ifndef Py_LIMITED_API |
| 14 | # define Py_CPYTHON_FRAMEOBJECT_H |
| 15 | # include "cpython/frameobject.h" |
| 16 | # undef Py_CPYTHON_FRAMEOBJECT_H |
| 17 | #endif |
Alexandre Vassalotti | 7b82b40 | 2009-07-21 04:30:03 +0000 | [diff] [blame] | 18 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | } |
| 21 | #endif |
| 22 | #endif /* !Py_FRAMEOBJECT_H */ |