Comment #4 on issue 1840 by [email protected]: atoms is non-greedy http://code.google.com/p/sympy/issues/detail?id=1840
This now gives: In [111]: (1+(1+log(x))**2).atoms(Function, Pow) Out[111]: ⎛ 2 ⎞ set⎝(log(x) + 1) , log(x)⎠ In [112]: (log(x**2)**2).atoms(Function, Pow) Out[112]: ⎛ 2 ⎞ ⎜ 2 ⎛ 2⎞ ⎛ 2⎞⎟ set⎝x , log⎝x ⎠, log ⎝x ⎠⎠ So I think it was actually fixed. -- 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.
