File Explorer

/proc/thread-self/root/proc/self/root/proc/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_buffer.py590 B · 23 lines
# Copyright 2007 Google, Inc. All Rights Reserved.# Licensed to PSF under a Contributor Agreement. """Fixer that changes buffer(...) into memoryview(...).""" # Local importsfrom .. import fixer_basefrom ..fixer_util import Name  class FixBuffer(fixer_base.BaseFix):    BM_compatible = True     explicit = True # The user must ask for this fixer     PATTERN = """              power< name='buffer' trailer< '(' [any] ')' > any* >              """     def transform(self, node, results):        name = results["name"]        name.replace(Name("memoryview", prefix=name.prefix))