[pypy-svn] r14336 - pypy/dist/pypy/annotation

pedronis at codespeak.net pedronis at codespeak.net
Wed Jul 6 16:04:36 CEST 2005


Author: pedronis
Date: Wed Jul  6 16:04:33 2005
New Revision: 14336

Modified:
   pypy/dist/pypy/annotation/builtin.py
Log:
annotating some math.* ops.



Modified: pypy/dist/pypy/annotation/builtin.py
==============================================================================
--- pypy/dist/pypy/annotation/builtin.py	(original)
+++ pypy/dist/pypy/annotation/builtin.py	Wed Jul  6 16:04:33 2005
@@ -271,7 +271,8 @@
 BUILTIN_ANALYZERS[math.fmod] = math_fmod
 BUILTIN_ANALYZERS[math.floor] = math_floor
 BUILTIN_ANALYZERS[math.exp] = math_any
-
+BUILTIN_ANALYZERS[math.ldexp] = math_any
+BUILTIN_ANALYZERS[math.frexp] = math_any
 BUILTIN_ANALYZERS[sys.getrefcount] = count
 BUILTIN_ANALYZERS[sys.getdefaultencoding] = conf
 import unicodedata



More information about the Pypy-commit mailing list