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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b9293f28bcfc05cb67b2b3f9c6c1fec3194ea28;p=thirdparty%2FPython%2Fcpython.git 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 4d71ea2ce318..b46ce4eb479e 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; }