[pypy-svn] r73151 - pypy/trunk/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Tue Mar 30 00:51:41 CEST 2010


Author: benjamin
Date: Tue Mar 30 00:51:40 2010
New Revision: 73151

Modified:
   pypy/trunk/pypy/objspace/std/model.py
Log:
kill paren

Modified: pypy/trunk/pypy/objspace/std/model.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/model.py	(original)
+++ pypy/trunk/pypy/objspace/std/model.py	Tue Mar 30 00:51:40 2010
@@ -335,7 +335,7 @@
     __slots__ = ()
 
     def __repr__(self):
-        s = '%s(%s)' % (self.__class__.__name__, getattr(self, 'name', '')))
+        s = '%s(%s)' % (self.__class__.__name__, getattr(self, 'name', ''))
         w_cls = getattr(self, 'w__class__', None)
         if w_cls is not None and w_cls is not self:
             s += ' instance of %s' % self.w__class__



More information about the Pypy-commit mailing list