Commit 0e4f7640 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix nits in error messages.

parent 8476c4df
......@@ -767,7 +767,7 @@ islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (PyErr_Occurred())
PyErr_Clear();
PyErr_SetString(PyExc_ValueError,
"Stop argument must be an integer or None.");
"Stop argument must be a non-negative integer or None.");
return NULL;
}
}
......@@ -776,7 +776,7 @@ islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (start == -1 && PyErr_Occurred()) {
PyErr_Clear();
PyErr_SetString(PyExc_ValueError,
"Start argument must be an integer.");
"Start argument must be a non-negative integer.");
return NULL;
}
if (a2 != Py_None) {
......@@ -785,7 +785,7 @@ islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (PyErr_Occurred())
PyErr_Clear();
PyErr_SetString(PyExc_ValueError,
"Stop argument must be an integer or None.");
"Stop argument must be a non-negative integer or None.");
return NULL;
}
}
......@@ -793,7 +793,7 @@ islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (start<0 || stop<-1) {
PyErr_SetString(PyExc_ValueError,
"Indices for islice() must be positive.");
"Indices for islice() must be non-negative integers.");
return NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment