【发布时间】:2020-12-27 06:58:02
【问题描述】:
以下代码看起来非常简单。一个整数被传递给 Python 中的函数,该函数在 C 中创建一个 PyList,然后填充它:
hello.c:
#include <Python.h>
PyObject* getlist(int *len)
{
printf("Passed to C: %d\n", *len);
PyObject *dlist = PyList_New(*len);
double num = 0.1;
for (int i = 0; i < *len; i++)
{
PyList_SetItem(dlist, i, PyFloat_FromDouble(num));
num += 0.1;
}
return dlist;
}
static char helloworld_docs[] =
"Fill docs where possible\n";
static PyMethodDef helloworld_funcs[] = {
{"getlist", (PyCFunction)getlist, METH_VARARGS, helloworld_docs},
{NULL}
};
static struct PyModuleDef Helloworld =
{
PyModuleDef_HEAD_INIT,
"Helloworld", // module name
"NULL", // module documentation
-1, /* size of per-interpreter state of the module, or -1 if the module keeps state in global variables. */
helloworld_funcs
};
PyMODINIT_FUNC PyInit_helloworld(void)
{
return PyModule_Create(&Helloworld);
}
setup.py:
from distutils.core import setup
from distutils.extension import Extension
setup(name='helloworld',
version='1.0',
ext_modules=[Extension('helloworld', ['hello.c'])])
usepkg.py:
#!/usr/bin/python
import sys
import helloworld
print("Input to Python:", sys.argv[1])
print (helloworld.getlist(sys.argv[1]))
我使用构建和安装
python3 setup.py build
python3 setup.py install
我没有发现任何错误。
当我测试它时会发生奇怪的行为。例如:
python3 usepkg.py 4
无论我作为参数给出什么值,输出总是相同的:
Input to Python: 4
Passed to C: 6
[0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6]
传递给 C 的值始终为 6。无论输入 agument 是 int 还是 Py_ssize_t,这都是相同的。我错过了什么?
【问题讨论】:
-
getlist是 PyObject,难道不应该有至少两个参数吗?第一个是对自身的引用,第二个是参数列表。 -
来自文档:“从 Python 中的参数列表(例如,单个表达式“ls -l”)到传递给 C 函数的参数有一个直接的翻译。C 函数总是有两个参数,通常命名为 self 和 args。"
标签: python c python-3.x cpython