我有一个带有此签名的python函数:
def post_message(self, message, *args, **kwargs):
我想从c ++调用函数并传递给它一些kwargs。调用函数不是问题。知道如何通过kwargs是。这是一个非工作的释义样本:
std::string message("aMessage");
boost::python::list arguments;
arguments.append("1");
boost::python::dict options;
options["source"] = "cpp";
boost::python::object python_func = get_python_func_of_wrapped_object()
python_func(message, arguments, options)
当我运用这段代码时,在pdb中我得到了(这不是我想要的):
messsage = aMessage
args = (['1'], {'source': 'cpp'})
kwargs = {}
如何在** kwargs字典的示例中传递选项?
我见过一个post建议使用**选项语法(这有多酷!):
python_func(message, arguments, **options)
不幸的是,这会导致
TypeError: No to_python (by-value) converter found for C++ type: class boost::python::detail::kwds_proxy
感谢您提供任何帮助。
答案 0 :(得分:15)
经过一番调查后发现,对象函数调用运算符被覆盖了两个 args_proxy
和 kwds_proxy
类型的参数。所以你必须使用这两个参数的特定调用样式。
args_proxy
和kwds_proxy
由*重载生成。这真的很好。
此外,第一个参数必须是元组类型,以便python解释器正确处理* args参数。
结果示例有效:
boost::python::list arguments;
arguments.append("aMessage");
arguments.append("1");
boost::python::dict options;
options["source"] = "cpp";
boost::python::object python_func = get_python_func_of_wrapped_object()
python_func(*boost::python::tuple(arguments), **options)
希望这会有所帮助......