> > 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.
