ReflectionΒΆ
-
PyObject*
PyEval_GetBuiltins
()ΒΆ - Return value: Borrowed reference.
Return a dictionary of the builtins in the current execution frame, or the interpreter of the thread state if no frame is currently executing.
-
PyObject*
PyEval_GetLocals
()ΒΆ - Return value: Borrowed reference.
Return a dictionary of the local variables in the current execution frame, or NULL if no frame is currently executing.
-
PyObject*
PyEval_GetGlobals
()ΒΆ - Return value: Borrowed reference.
Return a dictionary of the global variables in the current execution frame, or NULL if no frame is currently executing.
-
PyFrameObject*
PyEval_GetFrame
()ΒΆ - Return value: Borrowed reference.
Return the current thread stateβs frame, which is NULL if no frame is currently executing.
-
int
PyFrame_GetLineNumber
(PyFrameObject *frame)ΒΆ Return the line number that frame is currently executing.
-
int
PyEval_GetRestricted
()ΒΆ If there is a current frame and it is executing in restricted mode, return true, otherwise false.
-
const char*
PyEval_GetFuncName
(PyObject *func)ΒΆ Return the name of func if it is a function, class or instance object, else the name of funcs type.
-
const char*
PyEval_GetFuncDesc
(PyObject *func)ΒΆ 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
PyEval_GetFuncName()
, the result will be a description of func.