I am thinking of using rpyc to make interacting with a slave pypy-sandbox a little bit easier. and also to provide the sandbox some controlled access to features not available in the sandbox.
pypy-sandbox: http://doc.pypy.org/en/latest/sandbox.html ./pypy_interact.py --tmp=tmp /some/path/pypy-c-sandbox /tmp/script.py If I put rpyc in the 'tmp' folder, and try importing it in the sandbox, i get: File "rpyc/core/stream.py", line 7, in <module> ImportError: No module named _socket It seems we should just be able to use PipeStream, to communicate with the pypy_interact.py process. I'll post if I get it working by removing things that are not available and not necessary such as sockets dependencies in rpyc... cheers
