Is the change in behavior below intended?  I know there have been some
recent in-depth discussions about the GCD, so I might have well missed
it, in which case I apologize for bringing it up again.

Rob

4.7.1:

sage: five = Integers(7).list()[5]; five
5
sage:
five.parent()
Ring of integers modulo
7
sage: gcd(Integer(five),
Integer(7))
1
sage: gcd(five,
7)
1


4.7.2.alpha4, 4.8.alpha3:

sage: five = Integers(7).list()[5]; five
5
sage: five.parent()
Ring of integers modulo 7
sage: gcd(Integer(five), Integer(7))
1
sage: gcd(five, 7)
5

-- 
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