Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PyErr_Print()来自 C 接口的 Python API 等价物是什么?
PyErr_Print()
我假设在sys或traceback模块中进行了调用,但在其中找不到任何调用PyErr_Print().
sys
traceback
我在 Python 调用后获得与 相同的功能PyErr_PrintEx(),描述为:
PyErr_PrintEx()
Print a standard traceback to sys.stderr and clear the error indicator.
那就是我想进行具有这种效果的Python调用。
没有任何 Python 函数完全等同于PyErr_PrintEx(真实名称PyErr_Print;-),包括例如设置sys.last_traceback和朋友(仅应设置这些函数以帮助交互式解释器对未捕获的异常进行事后调试) . 您正在寻找什么功能的确切组合?
PyErr_PrintEx
PyErr_Print
sys.last_traceback