我向python公开了两个类:
BOOST_PYTHON_MODULE(client)
{
class_<Error>("Error")
.def("GetErrorCode", &Error::GetErrorCode)
.def("GetDescription", &Error::GetDescription)
.def("__nonzero__", &Error::operator bool);
class_<Client>("Client")
.def("Execute", &Client::Execute);
}
这是Execute方法的声明:
void Client::Execute(boost::python::object callable)
{
Error e;
callable(e);
}
这是我的python代码:
import client
def on_execute(error):
print error.GetDescription()
c = client.Client()
c.Execute(on_execute)
这会因Segmentation故障而失败。调试器说我无法将Error对象转换为python。如何解决这个问题?