File Explorer

/proc/thread-self/root/proc/thread-self/root/usr/lib64/python3.9/lib2to3/fixes

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 /.

fix_imports2.py289 B · 17 lines
"""Fix incompatible imports and module references that must be fixed afterfix_imports."""from . import fix_imports  MAPPING = {            'whichdb': 'dbm',            'anydbm': 'dbm',          }  class FixImports2(fix_imports.FixImports):     run_order = 7     mapping = MAPPING