• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef Py_CPYTHON_PYFRAME_H
2 #  error "this header file must not be included directly"
3 #endif
4 
5 PyAPI_DATA(PyTypeObject) PyFrame_Type;
6 PyAPI_DATA(PyTypeObject) PyFrameLocalsProxy_Type;
7 
8 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type)
9 #define PyFrameLocalsProxy_Check(op) Py_IS_TYPE((op), &PyFrameLocalsProxy_Type)
10 
11 PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame);
12 PyAPI_FUNC(PyObject *) PyFrame_GetLocals(PyFrameObject *frame);
13 
14 PyAPI_FUNC(PyObject *) PyFrame_GetGlobals(PyFrameObject *frame);
15 PyAPI_FUNC(PyObject *) PyFrame_GetBuiltins(PyFrameObject *frame);
16 
17 PyAPI_FUNC(PyObject *) PyFrame_GetGenerator(PyFrameObject *frame);
18 PyAPI_FUNC(int) PyFrame_GetLasti(PyFrameObject *frame);
19 PyAPI_FUNC(PyObject*) PyFrame_GetVar(PyFrameObject *frame, PyObject *name);
20 PyAPI_FUNC(PyObject*) PyFrame_GetVarString(PyFrameObject *frame, const char *name);
21 
22 /* The following functions are for use by debuggers and other tools
23  * implementing custom frame evaluators with PEP 523. */
24 
25 struct _PyInterpreterFrame;
26 
27 /* Returns the code object of the frame (strong reference).
28  * Does not raise an exception. */
29 PyAPI_FUNC(PyObject *) PyUnstable_InterpreterFrame_GetCode(struct _PyInterpreterFrame *frame);
30 
31 /* Returns a byte ofsset into the last executed instruction.
32  * Does not raise an exception. */
33 PyAPI_FUNC(int) PyUnstable_InterpreterFrame_GetLasti(struct _PyInterpreterFrame *frame);
34 
35 /* Returns the currently executing line number, or -1 if there is no line number.
36  * Does not raise an exception. */
37 PyAPI_FUNC(int) PyUnstable_InterpreterFrame_GetLine(struct _PyInterpreterFrame *frame);
38 
39 #define PyUnstable_EXECUTABLE_KIND_SKIP 0
40 #define PyUnstable_EXECUTABLE_KIND_PY_FUNCTION 1
41 #define PyUnstable_EXECUTABLE_KIND_BUILTIN_FUNCTION 3
42 #define PyUnstable_EXECUTABLE_KIND_METHOD_DESCRIPTOR 4
43 #define PyUnstable_EXECUTABLE_KINDS 5
44 
45 PyAPI_DATA(const PyTypeObject *) const PyUnstable_ExecutableKinds[PyUnstable_EXECUTABLE_KINDS+1];
46