0

我正在尝试在我的 C++ 程序中扩展 Python 解释器,我的问题如下。
当我试图调用一个函数时,在下面的代码中进行了解释,我NameError从 Python 解释器中得到一个 , 。错误是

Traceback (most recent call last):
File "", line 3, in module
NameError: name 'func' is not defined

根据我在此处使用的 Python wiki 版本 3.3.2,我使用以下代码绑定它

double func( int a )
{
    return a*a-0.5;
}

static PyObject *TestError;
static PyObject * func_test(PyObject * self, PyObject *args)
{
    const int * command;
    double sts;
    if( !PyArg_ParseTuple(args, "i", &command) )
        return NULL;
    sts = func( *command );
    return PyFloat_FromDouble(sts);
}

static PyMethodDef TestMethods[] = {
    {"func",  func_test, METH_VARARGS,
     "Thing."},
    {NULL, NULL, 0, NULL}        /* Sentinel */
};

static struct PyModuleDef testmodule = {
   PyModuleDef_HEAD_INIT,
   "test",   /* name of module */
   NULL, /* module documentation, may be NULL */
   -1,       /* size of per-interpreter state of the module,
            or -1 if the module keeps state in global variables. */
   TestMethods
};

PyMODINIT_FUNC PyInit_test()
{
    PyObject *m;
    m = PyModule_Create(&testmodule);
    if (m == NULL)
        return NULL;
    TestError = PyErr_NewException("test.error", NULL, NULL);
    Py_INCREF(TestError);
    PyModule_AddObject(m, "error", TestError);
    return m;
}


然后我打电话 PyImport_AppendInittab("test", PyInit_test);
Py_Initialize();,然后我试图运行一个简单的测试,

    PyRun_SimpleString("import test\n"
                       "print('Hi!')\n"
                       "b = func(5)\n"
                       "print(b)\n");

然而,我不断收到错误。有人可以解释一下,我在这里做错了什么吗?

4

2 回答 2

1
PyRun_SimpleString("import test\n"
                   "print('Hi!')\n"
                   "b = test.func(5)\n"   # <--
                   "print(b)\n");

编辑:另一个问题:

int command;   // not "int *"
double sts;
if( !PyArg_ParseTuple(args, "i", &command) )

请注意,如果您还不熟悉如何编写 CPython C 扩展模块,我建议您使用 CFFI。

于 2013-11-03T19:19:13.003 回答
0

我同意 Armin Rigo 的所有修复,我会添加这个:
PyImport_AppendInittab("test", &PyInit_test);

将函数的地址传递给PyImport_AppendInittab.

于 2016-09-15T14:49:30.347 回答