/usr/bin/pypy-sandbox is in python-pypy.sandbox 2.4.0+dfsg-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #! /usr/bin/python
import os
import sys
import pypy.sandbox
basedir = os.path.dirname(pypy.sandbox.__file__)
# Find our embedded rpython bits
sys.path.insert(0, basedir)
fn = os.path.join(basedir, 'pypy_interact.py')
execfile(fn)
|