Re: [pypy-dev] about PyPy's sandbox

2013-04-27 Thread Armin Rigo
Hi, On Tue, Apr 23, 2013 at 1:48 PM, zcx wrote: > I have study PyPy's sandbox for some time.But as my limited ability,I can't > understand the detail about the PyPy's sandbox. Sorry, PyPy's sandbox is not officially supported for now. We'd welcome someone who was interested in really developing

Re: [pypy-dev] about PyPy's sandbox

2013-04-08 Thread Jonathan Slenders
Hi 王衡, Normally you can use any library you want in the sandbox, as long as it doesn't use C-code; all the pure-python stuff should work. Add the library's parent directory to the virtual root in sandlib, and make sure that pypy will search for that directory. (Add it to sys.path in the sandbox, o