Author: Alexander Hesse <[email protected]> Branch: split-rpython Changeset: r59879:668748ed1fc4 Date: 2013-01-08 23:26 +0100 http://bitbucket.org/pypy/pypy/changeset/668748ed1fc4/
Log: Fixed missing import of math in test_ll_math 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 @@ -1,6 +1,7 @@ """ Try to test systematically all cases of ll_math.py. """ +import math from rpython.rtyper.lltypesystem.module import ll_math from rpython.translator.c.test.test_genc import compile _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
