We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995f617 commit d15b9f1Copy full SHA for d15b9f1
Doc/c-api/frame.rst
@@ -19,6 +19,24 @@ can be used to get a frame object.
19
20
See also :ref:`Reflection <reflection>`.
21
22
+.. c:var:: PyTypeObject PyFrame_Type
23
+
24
+ The type of frame objects.
25
+ It is the same object as :py:class:`types.FrameType` in the Python layer.
26
27
+ .. versionchanged:: 3.11
28
29
+ Previously, this type was only available after including
30
+ ``<frameobject.h>``.
31
32
+.. c:function:: int PyFrame_Check(PyObject *obj)
33
34
+ Return non-zero if *obj* is a frame object.
35
36
37
38
+ Previously, this function was only available after including
39
40
41
.. c:function:: PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
42
0 commit comments