[pypy-svn] r23928 - pypy/dist/pypy/tool

rxe at codespeak.net rxe at codespeak.net
Thu Mar 2 19:35:47 CET 2006


Author: rxe
Date: Thu Mar  2 19:35:44 2006
New Revision: 23928

Modified:
   pypy/dist/pypy/tool/isolate.py
Log:
Missing attribute needed by repr in IsolateInvoker



Modified: pypy/dist/pypy/tool/isolate.py
==============================================================================
--- pypy/dist/pypy/tool/isolate.py	(original)
+++ pypy/dist/pypy/tool/isolate.py	Thu Mar  2 19:35:44 2006
@@ -28,6 +28,7 @@
     _closed = False
 
     def __init__(self, module):
+        self.module = module
         self.slave = slaveproc.SlaveProcess(os.path.join(os.path.dirname(__file__),
                                                          'isolate_slave.py'))
         res = self.slave.cmd(('load', module))



More information about the Pypy-commit mailing list