我正在尝试从我的扩展程序中调用c函数,并将问题缩小到此测试用例。
#import "Python.h"
...
// Called from python with test_method(0, 0, 'TEST')
static PyObject*
test_method(PyObject *args)
{
int ok, x, y, size;
const char *s;
// this causes Segmentation fault
//ok = PyArg_ParseTuple(args, "iis#", &x, &y, &s, &size);
// also segfaults
//if(ok) PyErr_SetString(PyExc_SystemError, 'Exception');
// this does not cause segfault but fills the variables with garbage
ok = PyArg_ParseTuple(&args, "iis#", &x, &y, &s, &size);
// Example: >test_method 0, 37567920, (garbage)
printf(">test_method %d, %d, %s\n", x, y, s);
/* Success */
Py_RETURN_NONE;
}
static PyMethodDef testMethods[] =
{
{"test_method", test_method, METH_VARARGS,
"test_method"},
...
{NULL, NULL, 0, NULL}
};
任何想法我可能做错了什么。 (Python版本2.6.4)。
答案 0 :(得分:1)
嗯。我认为你方法的签名应该是这样的:
static PyObject* test_method(PyObject* self, PyObject* args)
如果要将test_method
作为绑定方法(即某个对象实例的方法)调用,self
将成为对象本身。如果test_method
是模块函数,self
是初始化模块时传递给Py_InitModule4()
的指针(如果使用Py_InitModule()
则为NULL)。问题在于Python在代码级别上没有对绑定实例方法和普通函数进行区分,这就是为什么即使要实现普通函数也必须传递self
。
有关详细信息,请参阅this page。