summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/reflection.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api/reflection.rst')
-rw-r--r--Doc/c-api/reflection.rst29
1 files changed, 0 insertions, 29 deletions
diff --git a/Doc/c-api/reflection.rst b/Doc/c-api/reflection.rst
index fe7741a..4b1c477 100644
--- a/Doc/c-api/reflection.rst
+++ b/Doc/c-api/reflection.rst
@@ -31,35 +31,6 @@ Reflection
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