[pypy-svn] r66206 - pypy/branch/pyjitpl5/pypy/jit/tl/tla

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Jul 14 14:51:15 CEST 2009


Author: cfbolz
Date: Tue Jul 14 14:51:11 2009
New Revision: 66206

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/tla/tla.py
Log:
kill this, I just added it without testing in the demo to David Ungar


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/tla/tla.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/tla/tla.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/tla/tla.py	Tue Jul 14 14:51:11 2009
@@ -1,6 +1,5 @@
 
 from pypy.rlib.jit import JitDriver, hint
-from pypy.rlib.objectmodel import UnboxedValue
 
 
 class W_Object:
@@ -19,7 +18,7 @@
 
 
 
-class W_IntObject(W_Object, UnboxedValue):
+class W_IntObject(W_Object):
 
     def __init__(self, intvalue):
         self.intvalue = intvalue



More information about the Pypy-commit mailing list