[pypy-svn] r76364 - pypy/trunk/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Tue Jul 27 14:42:45 CEST 2010


Author: fijal
Date: Tue Jul 27 14:42:43 2010
New Revision: 76364

Modified:
   pypy/trunk/pypy/rlib/objectmodel.py
Log:
Oops, total nonsense.


Modified: pypy/trunk/pypy/rlib/objectmodel.py
==============================================================================
--- pypy/trunk/pypy/rlib/objectmodel.py	(original)
+++ pypy/trunk/pypy/rlib/objectmodel.py	Tue Jul 27 14:42:43 2010
@@ -26,7 +26,7 @@
         by a call result then.
         """
         def decorated_func(func):
-            func._annspecialcase_ = 'memo()'
+            func._annspecialcase_ = 'specialize:memo()'
             return func
         return decorated_func
 
@@ -39,7 +39,7 @@
         exponential behavior!).
         """
         def decorated_func(func):
-            func._annspecialcase_ = 'arg' + self._wrap(args)
+            func._annspecialcase_ = 'specialize:arg' + self._wrap(args)
             return func
 
         return decorated_func
@@ -52,7 +52,7 @@
         exponential behavior!).
         """
         def decorated_func(func):
-            func._annspecialcase_ = 'argtype' + self._wrap(args)
+            func._annspecialcase_ = 'specialize:argtype' + self._wrap(args)
             return func
 
         return decorated_func
@@ -63,7 +63,7 @@
         for example). Same warnings about exponential behavior apply.
         """
         def decorated_func(func):
-            func._annspecialcase_ = 'll()'
+            func._annspecialcase_ = 'specialize:ll()'
             return func
 
         return decorated_func
@@ -72,7 +72,7 @@
         """ XXX what does that do?
         """
         def decorated_func(func):
-            func._annspecialcase_ = 'll_and_arg(%d)' % arg
+            func._annspecialcase_ = 'specialize:ll_and_arg(%d)' % arg
             return func
 
         return decorated_func



More information about the Pypy-commit mailing list