summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-08-03 10:47:35 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-08-03 10:47:35 +0000
commit7aa43a63d046f406f34d87865d2f3f7eb7b7cecf (patch)
tree86e3bd01a2497c63bc6025dcd2c13defde817f51
parentbe0d287b2b23b89e5bf121558fc5ee4ea97710c2 (diff)
downloadnumpy-7aa43a63d046f406f34d87865d2f3f7eb7b7cecf.tar.gz
Fix buggy sentinel for blasdot docstring.
-rw-r--r--numpy/core/blasdot/_dotblas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/blasdot/_dotblas.c b/numpy/core/blasdot/_dotblas.c
index 05ee47335..d71468bb5 100644
--- a/numpy/core/blasdot/_dotblas.c
+++ b/numpy/core/blasdot/_dotblas.c
@@ -1151,7 +1151,7 @@ static struct PyMethodDef dotblas_module_methods[] = {
{"vdot", (PyCFunction)dotblas_vdot, 1, doc_vdot},
{"alterdot", (PyCFunction)dotblas_alterdot, 1, doc_alterdot},
{"restoredot", (PyCFunction)dotblas_restoredot, 1, doc_restoredot},
- {NULL, NULL, 0} /* sentinel */
+ {NULL, NULL, 0, NULL} /* sentinel */
};
/* Initialization function for the module */