[pypy-svn] r26319 - pypy/dist/pypy/rpython/ootypesystem

nik at codespeak.net nik at codespeak.net
Tue Apr 25 11:55:49 CEST 2006


Author: nik
Date: Tue Apr 25 11:55:44 2006
New Revision: 26319

Modified:
   pypy/dist/pypy/rpython/ootypesystem/rtuple.py
Log:
oops, i didn't mean to check this in with the last commit.


Modified: pypy/dist/pypy/rpython/ootypesystem/rtuple.py
==============================================================================
--- pypy/dist/pypy/rpython/ootypesystem/rtuple.py	(original)
+++ pypy/dist/pypy/rpython/ootypesystem/rtuple.py	Tue Apr 25 11:55:44 2006
@@ -8,8 +8,8 @@
 
     def __init__(self, rtyper, items_r):
         AbstractTupleRepr.__init__(self, rtyper, items_r)
-        self.lowleveltype = ootype.Tuple(dict(zip(self.fieldnames, self.lltypes)))
-        #self.lowleveltype = tuple_type(self.fieldnames, self.lltypes)
+        #self.lowleveltype = ootype.Tuple(dict(zip(self.fieldnames, self.lltypes)))
+        self.lowleveltype = tuple_type(self.fieldnames, self.lltypes)
 
     def newtuple(cls, llops, r_tuple, items_v):
         # items_v should have the lowleveltype of the internal reprs



More information about the Pypy-commit mailing list