Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r65632:750795ca1fcd
Date: 2013-07-24 15:11 -0700
http://bitbucket.org/pypy/pypy/changeset/750795ca1fcd/

Log:    Backed out changeset f1c3de2cb18c

diff --git a/pypy/interpreter/error.py b/pypy/interpreter/error.py
--- a/pypy/interpreter/error.py
+++ b/pypy/interpreter/error.py
@@ -413,11 +413,7 @@
                             value = space.type(value)
                         result = value.getname(space)
                     else:
-                        try:
-                            result = unicode(value)
-                        except UnicodeDecodeError:
-                            print('_compute_value failed %r' % value)
-                            raise
+                        result = unicode(value)
                     lst[i + i + 1] = result
                 lst[-1] = self.xstrings[-1]
                 return u''.join(lst)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to