私はPythonC拡張機能を使い始めたばかりで、Pythonから呼び出し可能なC関数が2つのPyObject*引数を取りPyObject*を返さなければならない理由に興味があります。次の「HelloWorld」拡張機能を作成しました。
#include <Python.h>
static PyObject *
hello_world(PyObject *self, PyObject *noargs)
{
printf("Hello World\n");
return Py_BuildValue("");
}
// Module functions table.
static PyMethodDef
module_functions[] = {
{ "hello_world", hello_world, METH_NOARGS, "hello world method" },
{ NULL }
};
// This function is called to initialize the module.
PyMODINIT_FUNC
inittesty2(void)
{
Py_InitModule("testy2", module_functions);
}
(特にMETH_NOARGSで)次のhello_worldメソッドを使用できないのはなぜですか。
static void
hello_world()
{
printf("Hello World\n");
}
?