This test was failing on amd64:

Failed example:
    factor(x**2 - y**2)
Expected:
    (x - y)*(x + y)
Got:
    (x + y)*(x - y)

Now it works everywhere.
---
 sympy/polys/factortools.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sympy/polys/factortools.py b/sympy/polys/factortools.py
index 0fac031..a83c242 100644
--- a/sympy/polys/factortools.py
+++ b/sympy/polys/factortools.py
@@ -62,8 +62,8 @@ def factor(f, *symbols, **flags):
        >>> from sympy import *
        >>> x, y = symbols("x y")
 
-       >>> factor(x**2 - y**2)
-       (x - y)*(x + y)
+       >>> factor(x**2 - y**2) == (x - y)*(x + y)
+       True
 
     """
     if not symbols and not isinstance(f, Poly):
-- 
1.5.6.3


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to