[pypy-svn] r47132 - pypy/dist/pypy/translator/llvm/test
rxe at codespeak.net
rxe at codespeak.net
Wed Oct 3 22:27:57 CEST 2007
Author: rxe
Date: Wed Oct 3 22:27:56 2007
New Revision: 47132
Modified:
pypy/dist/pypy/translator/llvm/test/test_typed.py
Log:
fix test
Modified: pypy/dist/pypy/translator/llvm/test/test_typed.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_typed.py (original)
+++ pypy/dist/pypy/translator/llvm/test/test_typed.py Wed Oct 3 22:27:56 2007
@@ -218,7 +218,7 @@
def func(x, y):
z = x + y / 2.1 * x
z = math.fmod(z, 60.0)
- z = pow(z, 2)
+ z = math.pow(z, 2)
z = -z
return int(z)
More information about the pypy-svn
mailing list