File Explorer

/proc/thread-self/root/proc/self/root/proc/self/task/13/root/lib64/python3.9/venv

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

__main__.py145 B · 11 lines
import sysfrom . import main rc = 1try:    main()    rc = 0except Exception as e:    print('Error: %s' % e, file=sys.stderr)sys.exit(rc)