Author: Philip Jenvey <pjen...@underboss.org> Branch: py3k Changeset: r59394:7d56f9cc6baf Date: 2012-12-10 23:31 -0800 http://bitbucket.org/pypy/pypy/changeset/7d56f9cc6baf/
Log: fix translation diff --git a/pypy/objspace/std/stringobject.py b/pypy/objspace/std/stringobject.py --- a/pypy/objspace/std/stringobject.py +++ b/pypy/objspace/std/stringobject.py @@ -950,7 +950,7 @@ def add__String_ANY(space, w_left, w_right): left = w_left._value try: - right = space.buffer(w_right) + right = space.buffer_w(w_right) except OperationError, e: if e.match(space, space.w_TypeError): raise FailedToImplement _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit