Author: Philip Jenvey <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to