码迷,mamicode.com
首页 > 编程语言 > 详细

c中获取python的异常的traceback

时间:2015-04-28 16:11:31      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:python   c   traceback   execption   

1、如果是一般的控制台程序,可以使用PyErr_Print();错误信息会直接打印到控制台上
2、如果不是控制台程序,则需要使用PyErr_Fetch(PyObject**,PyObject**,PyObject**,PyObject**)
下面是代码实例:(来自Stack Overflow)

char* full_backtrace; // 保存traceback
PyObject* ptype,*pvalue,*ptraceback;
PyObject* pystr,*module_name,*pyth_module,*pyth_func;
char *str;
PyErr_Fetch(&ptype,&pvalue,&ptraceback);
pystr = PyObject_Str(pvalue);
str= PyString_AsString(pystr);
char* error_description = strdup(str);
module_name = PyString_FromString(“traceback”);
pyth_module = PyImport_Import(module_name);
Py_DECREF(module_name);
if (pyth_module == NULL) {
full_backtrace = NULL;
return;
}
pyth_func = PyObject_GetAttrString(pyth_module, “format_exception”);
if (pyth_func && PyCallable_Check(pyth_func)) {
PyObject *pyth_val;
pyth_val = PyObject_CallFunctionObjArgs(pyth_func, ptype, pvalue, ptraceback, NULL);
pystr = PyObject_Str(pyth_val);
str = PyString_AsString(pystr);
full_backtrace = strdup(str);
Py_DECREF(pyth_val);
}

c中获取python的异常的traceback

标签:python   c   traceback   execption   

原文地址:http://blog.csdn.net/u010640235/article/details/45336821

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!