i think i am new with using git. As i was using version 0.7.1 which is latest but i dont see any "equal" functions But do i have to keep updating from git ( i thought i have to update the version only when a new version is released like 0.7.2 release ) ? Could you please guide me on this.
On Fri, Dec 23, 2011 at 7:45 PM, gsagrawal <[email protected]> wrote: > on which version you are checking this ?? i am using 0.7.1 version > and it says " 'Pow' object has no attribute 'equals' " .Same error for > S.One > > > On Fri, Dec 23, 2011 at 7:06 PM, Chris Smith <[email protected]> wrote: > >> k=S.One >>> r=Pow(1,2,evaluate=False) >>> print (k==r) #prints True >>> print (r==k) #prints False >>> >>> >>> >> Until this is fixed, try >> >> >>> S.One.equals(Pow(1,2,evaluate=False)) >> True >> >>> Pow(1,2,evaluate=False).equals(S.One) >> True >> >> >> >> -- >> 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. >> > > -- 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.
