[pypy-svn] r39809 - pypy/dist/pypy/rpython

antocuni at codespeak.net antocuni at codespeak.net
Sat Mar 3 15:40:40 CET 2007


Author: antocuni
Date: Sat Mar  3 15:40:38 2007
New Revision: 39809

Modified:
   pypy/dist/pypy/rpython/extfunctable.py
Log:
fix the translation



Modified: pypy/dist/pypy/rpython/extfunctable.py
==============================================================================
--- pypy/dist/pypy/rpython/extfunctable.py	(original)
+++ pypy/dist/pypy/rpython/extfunctable.py	Sat Mar  3 15:40:38 2007
@@ -327,7 +327,7 @@
 
 complex_math_functions = [
     ('frexp', [float],        (float, int),   frexp_hook),
-    ('atan2', [float],        float,          None),
+    ('atan2', [float, float], float,          None),
     ('fmod',  [float, float], float,          None),
     ('ldexp', [float, int],   float,          None),
     ('modf',  [float],        (float, float), modf_hook),



More information about the Pypy-commit mailing list