我正在尝试在我的 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");
然而,我不断收到错误。有人可以解释一下,我在这里做错了什么吗?