[pypy-svn] r18852 - pypy/dist/pypy/rpython

pedronis at codespeak.net pedronis at codespeak.net
Mon Oct 24 02:32:50 CEST 2005


Author: pedronis
Date: Mon Oct 24 02:32:49 2005
New Revision: 18852

Modified:
   pypy/dist/pypy/rpython/annlowlevel.py
Log:
bug



Modified: pypy/dist/pypy/rpython/annlowlevel.py
==============================================================================
--- pypy/dist/pypy/rpython/annlowlevel.py	(original)
+++ pypy/dist/pypy/rpython/annlowlevel.py	Mon Oct 24 02:32:49 2005
@@ -36,7 +36,7 @@
         if s is None:
             compact = getattr(val, 'compact_repr', None)
             if compact is None:
-                s = repr(s)
+                s = repr(val)
             else:
                 s = compact()        
         return s + 'Const'



More information about the Pypy-commit mailing list