Dear Javier, On 7 Dez., 23:39, David Joyner <wdjoy...@gmail.com> wrote: > The following tests fail with sage-4.8.a3 on a 10.6.8 mac: > > jeeves:sage-4.8.alpha3 wdj$ ./sage -t -force_lib > "devel/sage/sage/groups/group.pyx" > sage -t -force_lib "devel/sage/sage/groups/group.pyx" > ********************************************************************** > Error: TAB character found. > **********************************************************************
That's to say: Replace any tab character in your files by four blank spaces. > File "/Users/wdj/sagefiles/sage-4.8.alpha3/devel/sage/sage/groups/group.pyx", > line 247: > sage: conjugacy_class(G,g) Is it really needed to add a conjugacy_class to the global name space? I'd rather expect to have a method G.conjugacy_class(g). > sage: d.set() > Expected: > {[3 2] > [2 4], [2 4] > ... > [4 0], [3 1] > [4 4]} > Got: > {[3 2] > ... > [1 0], [3 1] > [4 4]} > ********************************************************************** > File > "/Users/wdj/sagefiles/sage-4.8.alpha3/devel/sage/sage/groups/group_conjugacy_class.py", > line 141: > sage: c.list() > Expected: > [(1,3,2,4), (1,4,3,2), (1,3,4,2), (1,2,3,4), (1,4,2,3), (1,2,4,3)] > Got: > [(1,4,3,2), (1,3,4,2), (1,3,2,4), (1,2,3,4), (1,2,4,3), (1,4,2,3)] In those cases, it would be better to test against *sorted* versions of the data: sorted(c.list()) and sorted(list(d.set())). Best regards, Simon -- 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