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

arigo at codespeak.net arigo at codespeak.net
Tue Jul 12 23:18:05 CEST 2005


Author: arigo
Date: Tue Jul 12 23:18:02 2005
New Revision: 14594

Modified:
   pypy/dist/pypy/annotation/policy.py
Log:
Oups, forgot this.


Modified: pypy/dist/pypy/annotation/policy.py
==============================================================================
--- pypy/dist/pypy/annotation/policy.py	(original)
+++ pypy/dist/pypy/annotation/policy.py	Tue Jul 12 23:18:02 2005
@@ -76,6 +76,14 @@
     specialize__argtype0 = staticmethod(argtype(0))
     specialize__arg1 = staticmethod(argvalue(1))
     specialize__argtype1 = staticmethod(argtype(1))
+    specialize__arg2 = staticmethod(argvalue(2))
+    specialize__argtype2 = staticmethod(argtype(2))
+    specialize__arg3 = staticmethod(argvalue(3))
+    specialize__argtype3 = staticmethod(argtype(3))
+    specialize__arg4 = staticmethod(argvalue(4))
+    specialize__argtype4 = staticmethod(argtype(4))
+    specialize__arg5 = staticmethod(argvalue(5))
+    specialize__argtype5 = staticmethod(argtype(5))
 
     def override__ignore(pol, *args):
         bk = getbookkeeper()



More information about the Pypy-commit mailing list