Re: Issue 527 in sympy: guessing what functions, like integrate, roots, factor, apart (and many more), should do with the given expression

2011-05-11 Thread sympy
Comment #11 on issue 527 by matt...@gmail.com: guessing what functions, like integrate, roots, factor, apart (and many more), should do with the given expression http://code.google.com/p/sympy/issues/detail?id=527 I will, I just have to rebase them over master (there will be two commits).

Re: Issue 1868 in sympy: solve(floating point, x) stopped working

2011-05-11 Thread sympy
Comment #11 on issue 1868 by matt...@gmail.com: solve(floating point, x) stopped working http://code.google.com/p/sympy/issues/detail?id=1868 The main part of this issue was fixed. In master: In [1]: EQN1 = -12.0* 12.0*(2*sqrt(3.0) + 9.0) + (78.0 + 24.0*sqrt(3.0) ...: )*x**2 - 3.0*sqrt

Re: Issue 1868 in sympy: solve(floating point, x) stopped working

2011-05-11 Thread sympy
Updates: Labels: -Milestone-Release0.7.0 Milestone-Release0.7.1 Comment #12 on issue 1868 by asmeurer: solve(floating point, x) stopped working http://code.google.com/p/sympy/issues/detail?id=1868 (No comment was entered for this change.) -- You received this message because you are

Re: Issue 2307 in sympy: Duplicate methods: as_coeff_mul and as_coeff_Mul

2011-05-11 Thread sympy
Comment #8 on issue 2307 by smi...@gmail.com: Duplicate methods: as_coeff_mul and as_coeff_Mul http://code.google.com/p/sympy/issues/detail?id=2307 if eq.is_Mul: c, rest = eq.as_twoterms() else: c, rest = eq, S.One if c.is_Number: return c, rest return

Re: Issue 1977 in sympy: symbols() gives unexpected behavior when passed a list of length 1

2011-05-11 Thread sympy
Comment #23 on issue 1977 by smi...@gmail.com: symbols() gives unexpected behavior when passed a list of length 1 http://code.google.com/p/sympy/issues/detail?id=1977 So much changes(changed) without an attempt to keep backward compatibility...I don't care if this is also one of those issues