From 0b9293f28bcfc05cb67b2b3f9c6c1fec3194ea28 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 7 Dec 2009 19:34:59 +0000 Subject: [PATCH] Fix error message, for consistency with messages for % and //, and for consistency with trunk --- Objects/longobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1