Reflexión

PyObject *PyEval_GetBuiltins(void)
Return value: Borrowed reference. Part of the Stable ABI.

Obsoleto desde la versión 3.13: Use PyEval_GetFrameBuiltins() instead.

Retorna un diccionario de las construcciones en el marco de ejecución actual, o el intérprete del estado del hilo si no se está ejecutando ningún marco actualmente.

PyObject *PyEval_GetLocals(void)
Return value: Borrowed reference. Part of the Stable ABI.

Obsoleto desde la versión 3.13: Use either PyEval_GetFrameLocals() to obtain the same behaviour as calling locals() in Python code, or else call PyFrame_GetLocals() on the result of PyEval_GetFrame() to access the f_locals attribute of the currently executing frame.

Return a mapping providing access to the local variables in the current execution frame, or NULL if no frame is currently executing.

Refer to locals() for details of the mapping returned at different scopes.

As this function returns a borrowed reference, the dictionary returned for optimized scopes is cached on the frame object and will remain alive as long as the frame object does. Unlike PyEval_GetFrameLocals() and locals(), subsequent calls to this function in the same frame will update the contents of the cached dictionary to reflect changes in the state of the local variables rather than returning a new snapshot.

Distinto en la versión 3.13: As part of PEP 667, PyFrame_GetLocals(), locals(), and FrameType.f_locals no longer make use of the shared cache dictionary. Refer to the What’s New entry for additional details.

PyObject *PyEval_GetGlobals(void)
Return value: Borrowed reference. Part of the Stable ABI.

Obsoleto desde la versión 3.13: Use PyEval_GetFrameGlobals() instead.

Retorna un diccionario de las variables globales en el marco de ejecución actual, o NULL si actualmente no se está ejecutando ningún marco.

PyFrameObject *PyEval_GetFrame(void)
Return value: Borrowed reference. Part of the Stable ABI.

Retorna el marco del estado del hilo actual, que es NULL si actualmente no se está ejecutando ningún marco.

Vea también PyThreadState_GetFrame().

PyObject *PyEval_GetFrameBuiltins(void)
Return value: New reference. Part of the Stable ABI since version 3.13.

Retorna un diccionario de las construcciones en el marco de ejecución actual, o el intérprete del estado del hilo si no se está ejecutando ningún marco actualmente.

Added in version 3.13.

PyObject *PyEval_GetFrameLocals(void)
Return value: New reference. Part of the Stable ABI since version 3.13.

Return a dictionary of the local variables in the current execution frame, or NULL if no frame is currently executing. Equivalent to calling locals() in Python code.

To access f_locals on the current frame without making an independent snapshot in optimized scopes, call PyFrame_GetLocals() on the result of PyEval_GetFrame().

Added in version 3.13.

PyObject *PyEval_GetFrameGlobals(void)
Return value: New reference. Part of the Stable ABI since version 3.13.

Return a dictionary of the global variables in the current execution frame, or NULL if no frame is currently executing. Equivalent to calling globals() in Python code.

Added in version 3.13.

const char *PyEval_GetFuncName(PyObject *func)
Part of the Stable ABI.

Retorna el nombre de func si es una función, clase u objeto de instancia; de lo contrario, el nombre del tipo funcs.

const char *PyEval_GetFuncDesc(PyObject *func)
Part of the Stable ABI.

Retorna una cadena de caracteres de descripción, según el tipo de func. Los valores de retorno incluyen «()» para funciones y métodos, «constructor», «instancia» y «objeto». Concatenado con el resultado de PyEval_GetFuncName(), el resultado será una descripción de func.