Ticket #7532 deals with this issue: in ring.pyx, code says "return
NotImplementedError" where it should say "raise NotImplementedError".
But if I make this change:

diff -r c86168806012 -r 919f3924ef5c sage/rings/
ring.pyx
--- a/sage/rings/ring.pyx       Mon Jan 18 12:40:07 2010 -0800
+++ b/sage/rings/ring.pyx       Mon Jan 18 13:14:58 2010 -0800
@@ -692,7 +692,7 @@
             return False

         if proof:
-            return NotImplementedError
+            raise NotImplementedError
         else:
             return False

then I get doctest failures in various files in sage/schemes/
elliptic_curves. I'm assuming this is a problem in the elliptic curves
code, so can someone who is familiar with it take a look at this
problem?  (Even better: two people, one to write a patch and one to
review it :)

Thanks,
  John
-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to