Hi, I think the following is a bug. Most of the time 1/2 is not declared to be 0, but it is in the following code:
In [1]: L=[] In [2]: for a in range (1,2): ....: for b in range (2,3): ....: L.append ([a,b]) ....: In [3]: L Out[3]: [[1, 2]] In [4]: for item in L: ....: print item[0]/item [1] ....: 0 This is sage 4.1.1 on GNU/Linux. Mladen --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
