cpython/Doc/c-api/reflection.rst

102 lines
3.3 KiB
ReStructuredText
Raw Normal View History

.. highlight:: c
2008-01-20 09:30:57 +00:00
.. _reflection:
Reflection
==========
.. c:function:: PyObject* PyEval_GetBuiltins(void)
2008-01-20 09:30:57 +00:00
.. deprecated:: 3.13
Use :c:func:`PyEval_GetFrameBuiltins` instead.
2008-01-20 09:30:57 +00:00
Return a dictionary of the builtins in the current execution frame,
or the interpreter of the thread state if no frame is currently executing.
.. c:function:: PyObject* PyEval_GetLocals(void)
2008-01-20 09:30:57 +00:00
.. deprecated:: 3.13
To avoid creating a reference cycle in :term:`optimized scopes <optimized scope>`,
use either :c:func:`PyEval_GetFrameLocals` to obtain the same behaviour as calling
:func:`locals` in Python code, or else call :c:func:`PyFrame_GetLocals` on the result
of :c:func:`PyEval_GetFrame` to get the same result as this function without having to
cache the proxy instance on the underlying frame.
Return the :attr:`~frame.f_locals` attribute of the currently executing frame,
or ``NULL`` if no frame is currently executing.
2009-01-03 21:18:54 +00:00
If the frame refers to an :term:`optimized scope`, this returns a
write-through proxy object that allows modifying the locals.
In all other cases (classes, modules, :func:`exec`, :func:`eval`) it returns
the mapping representing the frame locals directly (as described for
:func:`locals`).
.. versionchanged:: 3.13
As part of :pep:`667`, return a proxy object for optimized scopes.
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyEval_GetGlobals(void)
2008-01-20 09:30:57 +00:00
.. deprecated:: 3.13
Use :c:func:`PyEval_GetFrameGlobals` instead.
2008-01-20 09:30:57 +00:00
Return a dictionary of the global variables in the current execution frame,
or ``NULL`` if no frame is currently executing.
2008-01-20 09:30:57 +00:00
.. c:function:: PyFrameObject* PyEval_GetFrame(void)
2008-01-20 09:30:57 +00:00
Return the current thread state's frame, which is ``NULL`` if no frame is
2008-01-20 09:30:57 +00:00
currently executing.
See also :c:func:`PyThreadState_GetFrame`.
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyEval_GetFrameBuiltins(void)
Return a dictionary of the builtins in the current execution frame,
or the interpreter of the thread state if no frame is currently executing.
.. versionadded:: 3.13
.. c:function:: PyObject* PyEval_GetFrameLocals(void)
Return a dictionary of the local variables in the current execution frame,
or ``NULL`` if no frame is currently executing. Equivalent to calling
:func:`locals` in Python code.
To access :attr:`~frame.f_locals` on the current frame without making an independent
snapshot in :term:`optimized scopes <optimized scope>`, call :c:func:`PyFrame_GetLocals`
on the result of :c:func:`PyEval_GetFrame`.
.. versionadded:: 3.13
.. c:function:: PyObject* PyEval_GetFrameGlobals(void)
Return a dictionary of the global variables in the current execution frame,
or ``NULL`` if no frame is currently executing. Equivalent to calling
:func:`globals` in Python code.
.. versionadded:: 3.13
.. c:function:: const char* PyEval_GetFuncName(PyObject *func)
2008-01-20 09:30:57 +00:00
Return the name of *func* if it is a function, class or instance object, else the
name of *func*\s type.
.. c:function:: const char* PyEval_GetFuncDesc(PyObject *func)
2008-01-20 09:30:57 +00:00
Return a description string, depending on the type of *func*.
Return values include "()" for functions and methods, " constructor",
" instance", and " object". Concatenated with the result of
:c:func:`PyEval_GetFuncName`, the result will be a description of
2008-01-20 09:30:57 +00:00
*func*.