frameobject.h 302 B

12345678910111213141516171819
  1. #ifndef Py_FRAMEOBJECT_H
  2. #define Py_FRAMEOBJECT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef struct _frame {
  7. PyObject_HEAD
  8. PyCodeObject *f_code;
  9. PyObject *f_globals;
  10. PyObject *f_locals;
  11. int f_lineno;
  12. } PyFrameObject;
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !Py_FRAMEOBJECT_H */