Author: Alexander Hesse <[email protected]>
Branch: split-rpython
Changeset: r59881:ccb69ed1d20c
Date: 2013-01-08 23:47 +0100
http://bitbucket.org/pypy/pypy/changeset/ccb69ed1d20c/

Log:    Fixed missing import of math in test_ll_math #2

diff --git a/pypy/module/math/test/test_direct.py 
b/pypy/module/math/test/test_direct.py
--- a/pypy/module/math/test/test_direct.py
+++ b/pypy/module/math/test/test_direct.py
@@ -3,7 +3,6 @@
 
 import py, sys, math
 from rpython.rlib import rfloat
-from rpython.rlib.rfloat import isinf, isnan, INFINITY, NAN
 from rpython.rtyper.lltypesystem.module.test.test_ll_math import (MathTests,
                                                                   getTester)
 
diff --git a/rpython/rtyper/lltypesystem/module/test/test_ll_math.py 
b/rpython/rtyper/lltypesystem/module/test/test_ll_math.py
--- a/rpython/rtyper/lltypesystem/module/test/test_ll_math.py
+++ b/rpython/rtyper/lltypesystem/module/test/test_ll_math.py
@@ -4,6 +4,7 @@
 import math
 from rpython.rtyper.lltypesystem.module import ll_math
 from rpython.translator.c.test.test_genc import compile
+from rpython.rlib.rfloat import isinf, isnan, INFINITY, NAN
 
 
 def positiveinf(x):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to