Comment #6 on issue 2488 by [email protected]: SymPy 0.7.0
http://code.google.com/p/sympy/issues/detail?id=2488
In 2.7, the warnings for as_coeff_terms didn't emit:
(3*x).as_coeff_terms()
(3*x).as_coeff_factors()
help((3*x).as_coeff_terms)
Help on method as_coeff_terms in module sympy.core.expr:
as_coeff_terms(self, *deps) method of sympy.core.mul.Mul instance
>>> (3*x).as_coeff_terms()
>>> source((3*x).as_coeff_terms)
In file: sympy\core\expr.py
def as_coeff_terms(self, *deps):
import warnings
warnings.warn("\nuse as_coeff_mul() instead of
as_coeff_terms().",
DeprecationWarning)
--
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.