Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r58394:3de7391aaa89
Date: 2012-10-24 08:23 +0200
http://bitbucket.org/pypy/pypy/changeset/3de7391aaa89/

Log:    Fix translation

diff --git a/pypy/module/_multiprocessing/interp_connection.py 
b/pypy/module/_multiprocessing/interp_connection.py
--- a/pypy/module/_multiprocessing/interp_connection.py
+++ b/pypy/module/_multiprocessing/interp_connection.py
@@ -125,7 +125,7 @@
             if newbuf:
                 rffi.free_charp(newbuf)
 
-        return space.wrapbytes(res)
+        return space.wrap(res)
 
     def send(self, space, w_obj):
         self._check_writable(space)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to