【发布时间】:2012-12-23 02:43:04
【问题描述】:
在下面这个 hello world C 程序中,我同时扩展和嵌入了 Python。
spam.c:
#include <Python.h>
static PyObject *
spam_echo(PyObject *self, PyObject *args) {
const char *command;
int sts;
if (!PyArg_ParseTuple(args, "s", &command))
return NULL;
sts = printf("%s\n", command);
return Py_BuildValue("i", sts);
}
static PyMethodDef SpamMethods[] = {
{"echo", spam_echo, METH_VARARGS, "Prints passed argument"},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC
initspam(void) {
(void) Py_InitModule("spam", SpamMethods);
}
int main(int argc, char *argv[]) {
PyObject *args;
PyObject *arg;
PyObject *result;
PyObject *moduleName;
PyObject *module;
PyObject *func;
Py_SetProgramName(argv[0]);
Py_Initialize();
initspam();
PyRun_SimpleFile(fopen("foo.py", "r"), "foo.py");
moduleName = PyString_FromString("__main__");
module = PyImport_Import(moduleName);
Py_DECREF(moduleName);
if (!module) {
return 1;
}
func = PyObject_GetAttrString(module, "foo");
Py_DECREF(module);
if (!func || !PyCallable_Check(func)) {
return 1;
}
args = PyTuple_New(1);
arg = Py_BuildValue("s", "hello world");
PyTuple_SetItem(args, 0, arg);
result = PyObject_CallObject(func, args);
Py_DECREF(arg);
Py_DECREF(args);
Py_DECREF(func);
printf("== before\n");
Py_Finalize();
printf("== after\n");
}
这里是调用的 Python 程序:
foo.py:
#!/usr/bin/python
import spam
def foo(cmd):
spam.echo(cmd)
我用编译
gcc spam.c -I/usr/include/python2.5/ -lpython2.5
使用 GCC 4.2.4-1ubuntu4,我在 Ubuntu Hardy 上使用 python2.5-dev 包。
基本上,我在 Py_Finalize 有一个段错误,如输出所示:
hello world
== before
Segmentation fault
【问题讨论】:
-
我实际上刚刚找到了导致段错误的原因!我必须注释掉
Py_DECREF(arg)或Py_DECREF(args)。我的猜测是去引用args也会自动去引用arg,所以我会去引用arg两次。我仍然需要某人的确认或其他解释!
标签: python c segmentation-fault cpython