Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 2929 by smi...@gmail.com: unevaluated expression printing
http://code.google.com/p/sympy/issues/detail?id=2929

Mul(x,y,x,evaluate=False)
x*y

(this is fixed in https://github.com/sympy/sympy/pull/828 )


This is ok:
Pow(3, -2, evaluate=False)
3**(-2)

But this isn't:
Mul(5,Pow(3, -2, evaluate=False),evaluate=False)
5/9
_.args
(5, 3**(-2))

(should be 5*3**(-2) or 5/3**2)

--
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.

Reply via email to