From: Mark Dickinson Date: Mon, 7 Dec 2009 19:34:59 +0000 (+0000) Subject: Fix error message, for consistency with messages for % and //, and for consistency... X-Git-Tag: v3.2a1~2074 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b9293f28bcfc05cb67b2b3f9c6c1fec3194ea28;p=python Fix error message, for consistency with messages for % and //, and for consistency with trunk --- diff --git a/Objects/longobject.c b/Objects/longobject.c index 4d71ea2ce3..b46ce4eb47 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; }