summaryrefslogtreecommitdiff
path: root/numpy/lib/src
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/src')
-rw-r--r--numpy/lib/src/_compiled_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/src/_compiled_base.c b/numpy/lib/src/_compiled_base.c
index fe2d7c1c9..c72a04d8d 100644
--- a/numpy/lib/src/_compiled_base.c
+++ b/numpy/lib/src/_compiled_base.c
@@ -111,7 +111,7 @@ arr_bincount(PyObject *self, PyObject *args, PyObject *kwds)
mxi = mxx (numbers, len) ;
mni = mnx (numbers, len) ;
Py_Assert(numbers[mni] >= 0,
- "The first argument of bincount must be non-negative");
+ "bincount: first argument of bincount must be non-negative");
ans_size = numbers [mxi] + 1 ;
type = PyArray_DescrFromType(PyArray_INTP);
if (weight == Py_None) {