summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/longobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 4d71ea2..b46ce4e 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -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;
}