I am running the same version of sympy and python 2.6 and cannot reproduce
your error either:
In [6]: a,y=sympy.var('a y')In [7]: a Out[7]: a In [8]: y Out[8]: y In [9]: sympy.simplify(y**5/a) Out[9]: y**5/a In [10]: sympy.simplify(a*y**5) Out[10]: a*y**5 In [11]: sympy.__version__ Out[11]: '0.6.5-git' What version of python are you running? On Sat, Jun 6, 2009 at 7:47 PM, smichr <[email protected]> wrote: > > > > I can't reproduce, please can you tell us the output of: > > > > >>> from sympy import __version__ as symver > > >>> print symver > > > > >>> from sympy import __version__ as symver > >>> print symver > 0.6.5-git > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" 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?hl=en -~----------~----~----~----~------~----~------~--~---
