在 Python C API 为什么包装函数是静态的

In Python C API why is wrapper function static

所以我有下面的示例代码,用于使用 C

扩展 python
#include <python.h>

static PyObject* sayhello(PyObject* self, PyObject *args) {
   const char* name;

   if (!PyArg_ParseTuple(arg, "s", &name))
       return NULL;

    printf("Hello %s !\n", name);

    Py_RETURN_NONE;
}

static PyMethodDef HelloMethods[] = 
{
    {"say_hello", say_hello, METH_VARARGS, "Greet Somebody."},
    {NULL, NULL, 0, NULL}
};

PyMODINIT_FUNC inithello(void) {
    (void) Py_InitModule("hello", HelloMethods);
}

我的问题是为什么下面的包装函数是静态的

   static PyObject* sayhello(PyObject* self, PyObject *args) {

C 中的函数如果不需要在其源文件外按名称引用to/linked,则可以保持静态。在这种情况下,Python 链接是使用源文件中的引用完成的,因此不需要外部链接。如果函数是外部可见的,代码也能正常工作,但为什么要污染你的名字space?