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_nonzero.py591 B · 22 lines
"""Fixer for __nonzero__ -> __bool__ methods."""# Author: Collin Winter # Local importsfrom .. import fixer_basefrom ..fixer_util import Name class FixNonzero(fixer_base.BaseFix):    BM_compatible = True    PATTERN = """    classdef< 'class' any+ ':'              suite< any*                     funcdef< 'def' name='__nonzero__'                              parameters< '(' NAME ')' > any+ >                     any* > >    """     def transform(self, node, results):        name = results["name"]        new = Name("__bool__", prefix=name.prefix)        name.replace(new)