Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 3190 by [email protected]: Dict sorting
http://code.google.com/p/sympy/issues/detail?id=3190
a=[Dict({1:'one', 2:'two'}),Dict({4:'four',0:'zero'})]
sorted(a)
[{1: one, 2: two}, {0: zero, 4: four}]
a=[{1:'one', 2:'two'},{4:'four',0:'zero'}]
sorted(a)
[{0: 'zero', 4: 'four'}, {1: 'one', 2: 'two'}]
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
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/sympy-issues?hl=en.