[pypy-svn] r75748 - pypy/branch/fast-forward/pypy/module/math

benjamin at codespeak.net benjamin at codespeak.net
Fri Jul 2 00:16:04 CEST 2010


Author: benjamin
Date: Fri Jul  2 00:16:02 2010
New Revision: 75748

Modified:
   pypy/branch/fast-forward/pypy/module/math/interp_math.py
Log:
fix unwrap spec

Modified: pypy/branch/fast-forward/pypy/module/math/interp_math.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/math/interp_math.py	(original)
+++ pypy/branch/fast-forward/pypy/module/math/interp_math.py	Fri Jul  2 00:16:02 2010
@@ -56,12 +56,12 @@
 def isinf(space, x):
     """Return True if x is infinity."""
     return space.wrap(rarithmetic.isinf(x))
-isinf.unwrap_spec = [ObjSpace, float, float]
+isinf.unwrap_spec = [ObjSpace, float]
 
 def isnan(space, x):
     """Return True if x is not a number."""
     return space.wrap(rarithmetic.isnan(x))
-isnan.unwrap_spec = [ObjSpace, float, float]
+isnan.unwrap_spec = [ObjSpace, float]
 
 def pow(space, x, y):
     """pow(x,y)



More information about the Pypy-commit mailing list