0

我正在尝试从我的扩展程序中调用 ac 函数,并将问题缩小到这个测试用例。

#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)。

4

1 回答 1

1

嗯。我认为您的方法的签名应该是这样的:

static PyObject* test_method(PyObject* self, PyObject* args)

如果您正在调用您test_method作为绑定方法(即某个对象实例的方法),self则将是对象本身。Iftest_method是一个模块函数,self是初始化模块时传递给的指针Py_InitModule4()(如果使用 NULL,则为 NULL Py_InitModule())。问题是 Python 在代码级别没有区分绑定实例方法和普通函数,这就是为什么self即使你正在实现一个普通函数也必须通过。

有关详细信息,请参阅此页面。

于 2010-06-30T09:25:13.420 回答