Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 3190 by sachin.i...@gmail.com: 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 sympy-issues@googlegroups.com. To unsubscribe from this group, send email to sympy-issues+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.