diff options
Diffstat (limited to 'numpy/linalg/lapack_litemodule.c')
-rw-r--r-- | numpy/linalg/lapack_litemodule.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/linalg/lapack_litemodule.c b/numpy/linalg/lapack_litemodule.c index 32290123b..ebffdcc24 100644 --- a/numpy/linalg/lapack_litemodule.c +++ b/numpy/linalg/lapack_litemodule.c @@ -314,8 +314,6 @@ static struct PyMethodDef lapack_lite_module_methods[] = { { NULL,NULL,0, NULL} }; -static char lapack_lite_module_documentation[] = ""; - #if PY_MAJOR_VERSION >= 3 static struct PyModuleDef moduledef = { @@ -346,8 +344,7 @@ initlapack_lite(void) m = PyModule_Create(&moduledef); #else m = Py_InitModule4("lapack_lite", lapack_lite_module_methods, - lapack_lite_module_documentation, - (PyObject*)NULL,PYTHON_API_VERSION); + "", (PyObject*)NULL,PYTHON_API_VERSION); #endif if (m == NULL) { return RETVAL; |