[pypy-commit] pypy default: Backed out changeset ba8760573e6d

arigo noreply at buildbot.pypy.org
Sun Apr 1 16:25:47 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r54117:24d65f2b0735
Date: 2012-04-01 16:20 +0200
http://bitbucket.org/pypy/pypy/changeset/24d65f2b0735/

Log:	Backed out changeset ba8760573e6d

diff --git a/pypy/module/cpyext/pyerrors.py b/pypy/module/cpyext/pyerrors.py
--- a/pypy/module/cpyext/pyerrors.py
+++ b/pypy/module/cpyext/pyerrors.py
@@ -57,7 +57,7 @@
     if operror:
         ptype[0] = make_ref(space, operror.w_type)
         pvalue[0] = make_ref(space, operror.get_w_value(space))
-        ptraceback[0] = make_ref(space, operror.get_traceback())
+        ptraceback[0] = make_ref(space, space.wrap(operror.get_traceback()))
     else:
         ptype[0] = lltype.nullptr(PyObject.TO)
         pvalue[0] = lltype.nullptr(PyObject.TO)


More information about the pypy-commit mailing list