Hi!

The following happens with Sage-4.5.2

sage.math:
  sage: L = [(360, {}), (2520, {0: 'X'}), ('prime', 3)]
  sage: sorted(L)
  [(360, {}), (2520, {0: 'X'}), ('prime', 3)]

bsd.math:
  sage: L = [(360, {}), (2520, {0: 'X'}), ('prime', 3)]
  sage: sorted(L)
  [('prime', 3), (360, {}), (2520, {0: 'X'})]

This is nasty, because "sorted" used to be very handy to provide the
contents of a dictionary in doctests.

Any idea why sorted has become machine dependent?

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

Reply via email to