1

我正在尝试重构我的项目的某些部分,尤其是 Python/C++ 接口。标准的 boost::python python 初始化之前工作过:

boost::python::object main_module = boost::python::import("__main__");
boost::python::object globals(main_module.attr("__dict__"));

//...

但是,在将其分解为自己的一类之后,我得到了

TypeError: No to_python (by-value) converter found for C++ type: boost::python::api::proxy<boost::python::api::attribute_policies>

当实例化一个 PyInterface 对象时,如下:

namespace py = boost::python;
class PyInterface
{
private:
    py::object
        main_module,
        global,
        tmp;
    //...
public:
    PyInterface();
    //...
};

PyInterface::PyInterface()
{
    std::cout << "Initializing..." << std::endl;
    Py_Initialize();
    std::cout << "Accessing main module..." << std::endl;
    main_module = py::import("__main__");
    std::cout << "Retrieve global namespace..." << std::endl;
    global(main_module.attr("__dict__"));
    //...
}

//in test.cpp
int main()
{
    PyInterface python;
    //...
}

Running gives the following output:
Initializing...
Accessing main module...
Retrieving global namespace...

TypeError: No to_python (by-value) converter found for C++ type: boost::python::api::proxy<boost::python::api::attribute_policies>

我唯一能想到的是,它与在使用它之前声明“全局变量”有关。在这种情况下,还有其他方法可以做到这一点吗?

4

1 回答 1

0

啊! 解决它。

在构造函数中更改对全局变量的调用

globals(main_method.attr("__dict__"));

改为使用赋值运算符:

globals = main_method.attr("__dict__");

回想起来,这似乎很明显,但至少我知道我不是唯一一个因为没有人贬低我而感到难过的人。

于 2012-04-06T12:56:17.597 回答