[pypy-svn] r32039 - pypy/dist/pypy/rpython/lltypesystem

mwh at codespeak.net mwh at codespeak.net
Thu Sep 7 11:01:36 CEST 2006


Author: mwh
Date: Thu Sep  7 11:01:35 2006
New Revision: 32039

Modified:
   pypy/dist/pypy/rpython/lltypesystem/lltype.py
Log:
trivial fix, testing new commit bot


Modified: pypy/dist/pypy/rpython/lltypesystem/lltype.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/lltype.py	(original)
+++ pypy/dist/pypy/rpython/lltypesystem/lltype.py	Thu Sep  7 11:01:35 2006
@@ -18,7 +18,7 @@
     def __init__(self, TYPE):
         self.TYPE = TYPE
     def __repr__(self):
-        return '<Uninitialized %r'%(self.TYPE,)
+        return '<Uninitialized %r>'%(self.TYPE,)
         
 
 def saferecursive(func, defl):



More information about the Pypy-commit mailing list