[pypy-svn] r22935 - pypy/dist/pypy/translator/asm

pedronis at codespeak.net pedronis at codespeak.net
Wed Feb 1 22:00:08 CET 2006


Author: pedronis
Date: Wed Feb  1 22:00:07 2006
New Revision: 22935

Modified:
   pypy/dist/pypy/translator/asm/model.py
Log:
it's a class!



Modified: pypy/dist/pypy/translator/asm/model.py
==============================================================================
--- pypy/dist/pypy/translator/asm/model.py	(original)
+++ pypy/dist/pypy/translator/asm/model.py	Wed Feb  1 22:00:07 2006
@@ -47,7 +47,7 @@
             _frame_type = LLInstruction._frame_type
         except AttributeError:
             from pypy.rpython.llinterp import LLFrame
-            _frame_type = LLInstruction._frame_type = type('*frame*', (),
+            _frame_type = LLInstruction._frame_type = type('*Frame*', (),
                                                            LLFrame.__dict__.copy())
         return object.__new__(_frame_type)
 



More information about the Pypy-commit mailing list