Issue 2907: ZeroDivisionError error message needs clarification (original) (raw)
Issue2907
Created on 2008-05-18 18:06 by chester, last changed 2022-04-11 14:56 by admin. This issue is now closed.
Messages (2) | ||
---|---|---|
msg67033 - (view) | Author: Chester (chester) | Date: 2008-05-18 18:06 |
Please fix the ZeroDivisionError error message string literal to clarify the error message: from if (y == 0) { PyErr_SetString(PyExc_ZeroDivisionError, "integer division or modulo by zero"); return DIVMOD_ERROR; to if (y == 0) { PyErr_SetString(PyExc_ZeroDivisionError, "integer division by zero or modulo by zero"); return DIVMOD_ERROR; This code is located here: http://svn.python.org/view/python/trunk/Objects/intobject.c?rev=62380&view=markup | ||
msg67035 - (view) | Author: Georg Brandl (georg.brandl) * ![]() |
Date: 2008-05-18 19:37 |
Rejecting - this isn't leading anywhere. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:56:34 | admin | set | github: 47156 |
2008-05-18 19:37:52 | georg.brandl | set | status: open -> closedresolution: rejectedmessages: + nosy: + georg.brandl |
2008-05-18 18:06:33 | chester | create |