File Explorer

/proc/thread-self/root/proc/thread-self/root/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_funcattrs.py644 B · 22 lines
"""Fix function attribute names (f.func_x -> f.__x__)."""# Author: Collin Winter # Local importsfrom .. import fixer_basefrom ..fixer_util import Name  class FixFuncattrs(fixer_base.BaseFix):    BM_compatible = True     PATTERN = """    power< any+ trailer< '.' attr=('func_closure' | 'func_doc' | 'func_globals'                                  | 'func_name' | 'func_defaults' | 'func_code'                                  | 'func_dict') > any* >    """     def transform(self, node, results):        attr = results["attr"][0]        attr.replace(Name(("__%s__" % attr.value[5:]),                          prefix=attr.prefix))