Reorganize the documentation of the PyFrameObject C API.
memoryview.rst
weakref.rst
capsule.rst
+ frame.rst
gen.rst
coro.rst
contextvars.rst
--- /dev/null
+.. highlight:: c
+
+Frame Objects
+-------------
+
+.. c:type:: PyFrameObject
+
+ The C structure of the objects used to describe frame objects.
+
+ The structure is not part of the C API.
+
+ .. versionchanged:: 3.11
+ The structure moved to the internal C API headers.
+
+The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions
+can be used to get a frame object.
+
+See also :ref:`Reflection <reflection>`.
+
+
+.. c:function:: PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
+
+ Get the *frame* next outer frame.
+
+ Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer
+ frame.
+
+ *frame* must not be ``NULL``.
+
+ .. versionadded:: 3.9
+
+
+.. c:function:: PyCodeObject* PyFrame_GetCode(PyFrameObject *frame)
+
+ Get the *frame* code.
+
+ Return a :term:`strong reference`.
+
+ *frame* must not be ``NULL``. The result (frame code) cannot be ``NULL``.
+
+ .. versionadded:: 3.9
+
+
+.. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
+
+ Return the line number that *frame* is currently executing.
+
+ *frame* must not be ``NULL``.
See also :c:func:`PyThreadState_GetFrame`.
-.. c:function:: PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
-
- Get the *frame* next outer frame.
-
- Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame.
-
- *frame* must not be ``NULL``.
-
- .. versionadded:: 3.9
-
-
-.. c:function:: PyCodeObject* PyFrame_GetCode(PyFrameObject *frame)
-
- Get the *frame* code.
-
- Return a :term:`strong reference`.
-
- *frame* must not be ``NULL``. The result (frame code) cannot be ``NULL``.
-
- .. versionadded:: 3.9
-
-
-.. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
-
- Return the line number that *frame* is currently executing.
-
- *frame* must not be ``NULL``.
-
-
.. c:function:: const char* PyEval_GetFuncName(PyObject *func)
Return the name of *func* if it is a function, class or instance object, else the
<keyword-only_parameter>` arguments and a closure tuple of cells.
-.. c:type:: PyFrameObject
-
- The C structure of the objects used to describe frame objects.
-
- The structure is only part of the internal C API: fields should not be
- access directly. Use getter functions like :c:func:`PyFrame_GetCode` and
- :c:func:`PyFrame_GetBack`.
-
- Debuggers and profilers can use the limited C API to access this structure.
-
- .. versionchanged:: 3.11
- The structure moved to the internal C API headers.
-
-
.. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f)
Evaluate an execution frame. This is a simplified interface to
* ``f_stackdepth``: removed.
* ``f_state``: no public API (renamed to ``f_frame.f_state``).
* ``f_trace``: no public API.
- * ``f_trace_lines``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_lines")``
- (it also be modified).
- * ``f_trace_opcodes``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes")``
- (it also be modified).
+ * ``f_trace_lines``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_lines")``.
+ * ``f_trace_opcodes``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes")``.
* ``f_localsplus``: no public API (renamed to ``f_frame.localsplus``).
* ``f_valuestack``: removed.