Message2817

Author pjenvey
Recipients
Date 2007-09-22.01:54:37
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
sourceforge kind of munged the diff I was trying to present to you, maybe this one will be easier to read:

 z = Double.valueOf(string.substring(s, end)).doubleValue();
-if (z == Double.POSITIVE_INFINITY || x == Double.NEGATIVE_INFINITY) {
-    throw Py.ValueError("double() out of range:" + string);
+if (z == Double.NEGATIVE_INFINITY || z == Double.POSITIVE_INFINITY) {
+    throw Py.ValueError("float() out of range: " + string);
 }
 
Also this patch contains a tab character. Could you please disable tabs in your editor for all future patches? The codebase prefers spaces, thanks!
History
Date User Action Args
2008-02-20 17:18:47adminlinkissue1779428 messages
2008-02-20 17:18:47admincreate