如果我们想使用内部 Python API 将 C/C++ 集成到 python 中。那么函数的签名有以下形式
static PyObject *MyFunction( PyObject *self, PyObject *args );
static PyObject *MyFunctionWithKeywords(PyObject *self,
PyObject *args,
PyObject *kw);
static PyObject *MyFunctionWithNoArgs( PyObject *self );
为什么这些函数被实现为静态的?