Commit 0b9293f2 authored by Mark Dickinson's avatar Mark Dickinson

Fix error message, for consistency with messages for % and //, and for consistency with trunk

parent b31f3027
......@@ -3231,7 +3231,7 @@ long_true_divide(PyObject *a, PyObject *b)
if (bd == 0.0) {
PyErr_SetString(PyExc_ZeroDivisionError,
"int division or modulo by zero");
"integer division or modulo by zero");
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