mirror of
https://github.com/python/cpython.git
synced 2026-02-16 04:11:55 +00:00
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/* Frame object interface */
|
|
|
|
#ifndef Py_CPYTHON_FRAMEOBJECT_H
|
|
# error "this header file must not be included directly"
|
|
#endif
|
|
|
|
struct _frame {
|
|
PyObject_HEAD
|
|
struct _frame *f_back; /* previous frame, or NULL */
|
|
struct _interpreter_frame *f_frame; /* points to the frame data */
|
|
PyObject *f_trace; /* Trace function */
|
|
int f_lineno; /* Current line number. Only valid if non-zero */
|
|
char f_trace_lines; /* Emit per-line trace events? */
|
|
char f_trace_opcodes; /* Emit per-opcode trace events? */
|
|
char f_owns_frame; /* This frame owns the frame */
|
|
/* The frame data, if this frame object owns the frame */
|
|
PyObject *_f_frame_data[1];
|
|
};
|
|
|
|
/* Standard object interface */
|
|
|
|
PyAPI_DATA(PyTypeObject) PyFrame_Type;
|
|
|
|
#define PyFrame_Check(op) Py_IS_TYPE(op, &PyFrame_Type)
|
|
|
|
PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
|
|
PyObject *, PyObject *);
|
|
|
|
/* only internal use */
|
|
PyFrameObject*
|
|
_PyFrame_New_NoTrack(PyCodeObject *code);
|
|
|
|
|
|
/* The rest of the interface is specific for frame objects */
|
|
|
|
/* Conversions between "fast locals" and locals in dictionary */
|
|
|
|
PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
|
|
|
|
PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);
|
|
PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *);
|
|
|
|
PyAPI_FUNC(void) _PyFrame_DebugMallocStats(FILE *out);
|
|
|
|
PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame);
|