[pypy-commit] pypy py3k: (amaury) oops, don't double wrap

pjenvey noreply at buildbot.pypy.org
Wed Jun 5 23:48:58 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r64808:162c471d831c
Date: 2013-06-05 14:48 -0700
http://bitbucket.org/pypy/pypy/changeset/162c471d831c/

Log:	(amaury) oops, don't double wrap

diff --git a/pypy/interpreter/pyparser/error.py b/pypy/interpreter/pyparser/error.py
--- a/pypy/interpreter/pyparser/error.py
+++ b/pypy/interpreter/pyparser/error.py
@@ -24,7 +24,7 @@
                                space.newtuple([w_filename,
                                                space.wrap(self.lineno),
                                                space.wrap(self.offset),
-                                               space.wrap(w_text),
+                                               w_text,
                                                space.wrap(self.lastlineno)])])
 
     def __str__(self):


More information about the pypy-commit mailing list