Author: Manuel Jacob
Branch: refactor-str-types
Changeset: r66280:8360b8f1a263
Date: 2013-08-21 12:47 +0200
http://bitbucket.org/pypy/pypy/changeset/8360b8f1a263/

Log:    Fix.

diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py
--- a/pypy/objspace/std/bytesobject.py
+++ b/pypy/objspace/std/bytesobject.py
@@ -611,7 +611,7 @@
             from pypy.objspace.std.strbufobject import W_StringBufferObject
             builder = StringBuilder()
             builder.append(self._value)
-            builder.append(w_other._value)
+            builder.append(self._op_val(space, w_other))
             return W_StringBufferObject(builder)
         return self._StringMethods_descr_add(space, w_other)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to