This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Retro
Recipients Retro, ezio.melotti, mark.dickinson
Date 2009-12-21.11:05:01
SpamBayes Score 0.0007605788
Marked as misclassified No
Message-id <1261393502.89.0.209918787235.issue7482@psf.upfronthosting.co.za>
In-reply-to
Content
The patch is *almost* okay.

errno = 0;
 	div = c_quot(v->cval,w->cval); /* The raw divisor value. */
 	if (errno == EDOM) {
-		PyErr_SetString(PyExc_ZeroDivisionError, "complex remainder");
+		PyErr_SetString(PyExc_ZeroDivisionError, "complex modulo by zero");
 		return NULL;


It should be as expressed in the code above. In the patch, the fixed
string is "complex remainder by zero", but this is broken English. I
propose "complex modulo by zero". Please fix your patch and we're good.
History
Date User Action Args
2009-12-21 11:05:03Retrosetrecipients: + Retro, mark.dickinson, ezio.melotti
2009-12-21 11:05:02Retrosetmessageid: <1261393502.89.0.209918787235.issue7482@psf.upfronthosting.co.za>
2009-12-21 11:05:01Retrolinkissue7482 messages
2009-12-21 11:05:01Retrocreate