内部 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 );
これらの関数が静的に実装されているのはなぜですか?