Status: Valid Owner: ---- Labels: Type-Defect Priority-Medium Printing
New issue 3326 by [email protected]: Do a better job of print results of factorint(visual=True)
http://code.google.com/p/sympy/issues/detail?id=3326 In [52]: print factorint(2**64 - 1, visual=True) 17**1*257**1*3**1*5**1*641**1*65537**1*6700417**1 In [53]: print factorint(2**64 - 1, visual=True).args (3**1, 5**1, 17**1, 257**1, 641**1, 65537**1, 6700417**1) The args of the Mul are sorted, but they don't print that way. -- 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.
