[pypy-svn] r50833 - pypy/dist/pypy/interpreter

antocuni at codespeak.net antocuni at codespeak.net
Mon Jan 21 13:56:37 CET 2008


Author: antocuni
Date: Mon Jan 21 13:56:36 2008
New Revision: 50833

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
(arigo) specialize appexec

Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Mon Jan 21 13:56:36 2008
@@ -834,6 +834,7 @@
         w_func = self.fromcache(AppExecCache).getorbuild(source)
         args = Arguments(self, list(posargs_w))
         return self.call_args(w_func, args)
+    appexec._annspecialcase_ = 'specialize:arg(2)'
 
     def decode_index(self, w_index_or_slice, seqlength):
         """Helper for custom sequence implementations



More information about the Pypy-commit mailing list