[pypy-svn] r71439 - pypy/trunk/pypy/module/__builtin__

fijal at codespeak.net fijal at codespeak.net
Tue Feb 23 20:08:19 CET 2010


Author: fijal
Date: Tue Feb 23 20:08:18 2010
New Revision: 71439

Modified:
   pypy/trunk/pypy/module/__builtin__/interp_classobj.py
Log:
Of course, a typo :-/


Modified: pypy/trunk/pypy/module/__builtin__/interp_classobj.py
==============================================================================
--- pypy/trunk/pypy/module/__builtin__/interp_classobj.py	(original)
+++ pypy/trunk/pypy/module/__builtin__/interp_classobj.py	Tue Feb 23 20:08:18 2010
@@ -193,7 +193,7 @@
 
     def __repr__(self):
         # NOT_RPYTHON
-        print '<W_ClassObject(%s)>' % self.name
+        return '<W_ClassObject(%s)>' % self.name
 
 def class_descr_call(space, w_self, __args__):
     self = space.interp_w(W_ClassObject, w_self)



More information about the Pypy-commit mailing list