Author: Carl Friedrich Bolz-Tereick <cfb...@gmx.de> Branch: py3.6 Changeset: r97390:02699fce1da0 Date: 2019-09-07 09:50 +0200 http://bitbucket.org/pypy/pypy/changeset/02699fce1da0/
Log: fix translation diff --git a/pypy/module/exceptions/interp_exceptions.py b/pypy/module/exceptions/interp_exceptions.py --- a/pypy/module/exceptions/interp_exceptions.py +++ b/pypy/module/exceptions/interp_exceptions.py @@ -353,7 +353,7 @@ if not space.is_w(self.w_path, space.w_None): space.setitem(w_dict, space.newtext("path"), self.w_path) if space.is_true(w_dict): - lst.append(w_dict) + lst = [lst[0], lst[1], w_dict] return space.newtuple(lst) def descr_setstate(self, space, w_dict): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit