gpt4 book ai didi

python - 段错误(核心已转储)。在 python 中使用 C 模块

转载 作者:太空宇宙 更新时间:2023-11-04 02:09:47 24 4
gpt4 key购买 nike

我是 python 的新手,我正在尝试使用在 C 上编写的模块启动 python 脚本。当我尝试启动 python 脚本时出现段错误(核心转储)错误。这是一个 C 代码:

// input_device.c  
#include "Python.h"

#include "input.h"

static PyObject* input_device_open(PyObject* self, PyObject* id)
{
int fd, nr;
PyObject* pyfd;

if (!PyInt_Check(id))
return NULL;

nr = (int)PyInt_AsLong(id);
fd = device_open(nr, 0);
if (fd == -1)
return NULL;
pyfd = PyInt_FromLong(fd);
Py_INCREF(pyfd);
return pyfd;
}

static PyMethodDef module_methods[] =
{
{ "device_open", (PyCFunction)input_device_open, METH_VARARGS, "..." },
{ NULL, NULL, 0, NULL }
};

PyMODINIT_FUNC initinput_device(void)
{
Py_InitModule4("input_device", module_methods, "wrapper methods", 0, PYTHON_API_VERSION);
}

和 python 脚本:

from input_device import device_open
device_open(1)

有人可以看看并指出正确的方向,我做错了什么。提前致谢。

最佳答案

返回 NULL 而不设置异常,或者确保异常已被您调用的函数设置是否合法?我认为 NULL 是一个信号,表明 Python 可以去寻找为用户引发的异常。

我不确定 Py_INCREF(pyfd); 是否必要;对象在创建时是否已经有 1 的引用计数?

关于python - 段错误(核心已转储)。在 python 中使用 C 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15832700/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com