[pypy-svn] r62050 - pypy/branch/pyjitpl5/pypy/rpython/lltypesystem

fijal at codespeak.net fijal at codespeak.net
Fri Feb 20 14:03:18 CET 2009


Author: fijal
Date: Fri Feb 20 14:03:17 2009
New Revision: 62050

Modified:
   pypy/branch/pyjitpl5/pypy/rpython/lltypesystem/rlist.py
Log:
hint for the list type. otherwise it's a real mess to guess


Modified: pypy/branch/pyjitpl5/pypy/rpython/lltypesystem/rlist.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/rpython/lltypesystem/rlist.py	(original)
+++ pypy/branch/pyjitpl5/pypy/rpython/lltypesystem/rlist.py	Fri Feb 20 14:03:17 2009
@@ -110,7 +110,8 @@
                                           "_ll_resize_ge": _ll_list_resize_ge,
                                           "_ll_resize_le": _ll_list_resize_le,
                                           "_ll_resize": _ll_list_resize,
-                                      }))
+                                      }),
+                                      hints = {'list': True})
                              )
 
     def compact_repr(self):



More information about the Pypy-commit mailing list