This makes it run on python2.4
---
 sympy/polynomials/base.py |    2 +-
 sympy/polynomials/div_.py |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sympy/polynomials/base.py b/sympy/polynomials/base.py
index 3236198..6201324 100644
--- a/sympy/polynomials/base.py
+++ b/sympy/polynomials/base.py
@@ -1,7 +1,7 @@
 """Module providing the class Polynomial and low-level functions"""
 
 from sympy import Basic, Symbol, Pow, Number, Add, Mul, Integer, Rational, \
-        sympify, symbols
+        sympify, symbols, all
 # Use (faster) Singleton comparisons.
 from sympy.core.basic import S
 # Need numbers.gcd, for content.
diff --git a/sympy/polynomials/div_.py b/sympy/polynomials/div_.py
index 307189f..18a7cf9 100644
--- a/sympy/polynomials/div_.py
+++ b/sympy/polynomials/div_.py
@@ -2,8 +2,8 @@
 
 from sympy.polynomials.base import Polynomial, term_div, merge_var
 from sympy.core import sympify, S, Symbol, Integer, symbols
-
 from sympy.core.numbers import igcd
+from sympy import all
 
 def div(f, g, var=None, order=None, coeff=None):
     """Division with remainder.
-- 
1.5.6.5


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