[pypy-commit] pypy default: fix one test, translation too

mattip noreply at buildbot.pypy.org
Thu May 30 05:37:52 CEST 2013


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r64665:f1937be96ddf
Date: 2013-05-30 06:37 +0300
http://bitbucket.org/pypy/pypy/changeset/f1937be96ddf/

Log:	fix one test, translation too

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
@@ -374,7 +374,7 @@
         return space.wrap(self)
 
     def descr_repr(self, space):
-        return self._repr(space, self.handle)
+        return self._repr(space, rffi.cast(rffi.INTPTR_T, self.handle))
 
     def is_valid(self):
         return self.handle != self.INVALID_HANDLE_VALUE


More information about the pypy-commit mailing list