File Explorer

/proc/thread-self/root/proc/thread-self/root/proc/11/root/usr/lib64/python3.9/importlib

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

machinery.py844 B · 22 lines
"""The machinery of importlib: finders, loaders, hooks, etc.""" import _imp from ._bootstrap import ModuleSpecfrom ._bootstrap import BuiltinImporterfrom ._bootstrap import FrozenImporterfrom ._bootstrap_external import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,                     OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES,                     EXTENSION_SUFFIXES)from ._bootstrap_external import WindowsRegistryFinderfrom ._bootstrap_external import PathFinderfrom ._bootstrap_external import FileFinderfrom ._bootstrap_external import SourceFileLoaderfrom ._bootstrap_external import SourcelessFileLoaderfrom ._bootstrap_external import ExtensionFileLoader  def all_suffixes():    """Returns a list of all recognized module suffixes for this process"""    return SOURCE_SUFFIXES + BYTECODE_SUFFIXES + EXTENSION_SUFFIXES