commit | 0b9293f28bcfc05cb67b2b3f9c6c1fec3194ea28 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Mon Dec 07 19:34:59 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Mon Dec 07 19:34:59 2009 +0000 |
tree | b217575186db22f0270890b3e55c5545624e8d07 | |
parent | b31f30271e59dce7a9b2f48e478ddcf63ca41359 [diff] |
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 4d71ea2..b46ce4e 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c
@@ -3231,7 +3231,7 @@ if (bd == 0.0) { PyErr_SetString(PyExc_ZeroDivisionError, - "int division or modulo by zero"); + "integer division or modulo by zero"); return NULL; }