[pypy-commit] pypy py3k: translation fix

pjenvey noreply at buildbot.pypy.org
Tue Sep 10 03:01:38 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r66887:88b27fe9402e
Date: 2013-09-09 18:00 -0700
http://bitbucket.org/pypy/pypy/changeset/88b27fe9402e/

Log:	translation fix

diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -82,7 +82,7 @@
             return space.unicode_w(space.getattr(self, space.wrap('__name__')))
         except OperationError, e:
             if e.match(space, space.w_TypeError) or e.match(space, space.w_AttributeError):
-                return '?'
+                return u'?'
             raise
 
     def getaddrstring(self, space):


More information about the pypy-commit mailing list