python有没有指针引用,boost :: python:如何调用需要指针的函数?
I have a function that takes an int-pointer and exposed it via boost::python. How can I call this function from python?in C++ with boost::python:void foo(int* i);...def("foo", foo);in python:import fo...