diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-12-16 00:56:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-16 00:56:08 -0700 |
commit | 70157e48c68b6c69c1ca86f3b8dfd5d53040eb89 (patch) | |
tree | 6ca88fa070996cbf49cd61317c625b9b7dfe3cc4 | |
parent | 8f2acc9b44bdf27b8dca417a87d34d0564a52a09 (diff) | |
parent | f6e421baa4bcdc2e2975f7852b1400438730e2e9 (diff) | |
download | numpy-70157e48c68b6c69c1ca86f3b8dfd5d53040eb89.tar.gz |
Merge pull request #20595 from splhack/bug-PyInit__umath_linalg
BUG: Fix PyInit__umath_linalg type
-rw-r--r-- | numpy/linalg/umath_linalg.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/umath_linalg.c.src b/numpy/linalg/umath_linalg.c.src index ff63ea218..f8a154445 100644 --- a/numpy/linalg/umath_linalg.c.src +++ b/numpy/linalg/umath_linalg.c.src @@ -4396,7 +4396,7 @@ static struct PyModuleDef moduledef = { NULL }; -PyObject *PyInit__umath_linalg(void) +PyMODINIT_FUNC PyInit__umath_linalg(void) { PyObject *m; PyObject *d; |