[pypy-svn] r29770 - pypy/dist/pypy/translator/c

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 7 19:22:18 CEST 2006


Author: antocuni
Date: Fri Jul  7 19:22:16 2006
New Revision: 29770

Modified:
   pypy/dist/pypy/translator/c/extfunc.py
Log:
fix translation.



Modified: pypy/dist/pypy/translator/c/extfunc.py
==============================================================================
--- pypy/dist/pypy/translator/c/extfunc.py	(original)
+++ pypy/dist/pypy/translator/c/extfunc.py	Fri Jul  7 19:22:16 2006
@@ -43,11 +43,11 @@
     ll_time.ll_time_sleep: 'LL_time_sleep',
     ll_time.ll_time_time:  'LL_time_time',
     ll_math.ll_math_pow:   'LL_math_pow',
-    ll_math2.Implementation.ll_math_frexp: 'LL_math_frexp',
+    ll_math2.Implementation.ll_math_frexp.im_func: 'LL_math_frexp',
     ll_math.ll_math_atan2: 'LL_math_atan2',
     ll_math.ll_math_fmod : 'LL_math_fmod',
     ll_math.ll_math_ldexp: 'LL_math_ldexp',
-    ll_math2.Implementation.ll_math_modf:  'LL_math_modf',
+    ll_math2.Implementation.ll_math_modf.im_func:  'LL_math_modf',
     ll_math.ll_math_hypot: 'LL_math_hypot',
     ll_strtod.ll_strtod_parts_to_float:
         'LL_strtod_parts_to_float',



More information about the Pypy-commit mailing list