SILENT KILLERPanel

Current Path: > > opt > alt > > python39 > lib64 > python3.9 > lib2to3 > __pycache__


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt//python39/lib64/python3.9/lib2to3/__pycache__

NameTypeSizeLast ModifiedActions
__init__.cpython-39.opt-1.pyc File 315 bytes June 19 2025 12:11:11.
__init__.cpython-39.opt-2.pyc File 315 bytes June 19 2025 12:11:11.
__init__.cpython-39.pyc File 315 bytes June 19 2025 12:11:11.
__main__.cpython-39.opt-1.pyc File 228 bytes June 19 2025 12:11:11.
__main__.cpython-39.opt-2.pyc File 228 bytes June 19 2025 12:11:11.
__main__.cpython-39.pyc File 228 bytes June 19 2025 12:11:11.
btm_matcher.cpython-39.opt-1.pyc File 4890 bytes June 19 2025 12:11:11.
btm_matcher.cpython-39.opt-2.pyc File 3319 bytes June 19 2025 12:11:17.
btm_matcher.cpython-39.pyc File 4890 bytes June 19 2025 12:11:11.
btm_utils.cpython-39.opt-1.pyc File 6161 bytes June 19 2025 12:11:11.
btm_utils.cpython-39.opt-2.pyc File 4649 bytes June 19 2025 12:11:17.
btm_utils.cpython-39.pyc File 6161 bytes June 19 2025 12:11:11.
fixer_base.cpython-39.opt-1.pyc File 6268 bytes June 19 2025 12:11:11.
fixer_base.cpython-39.opt-2.pyc File 3517 bytes June 19 2025 12:11:17.
fixer_base.cpython-39.pyc File 6268 bytes June 19 2025 12:11:11.
fixer_util.cpython-39.opt-1.pyc File 12183 bytes June 19 2025 12:11:11.
fixer_util.cpython-39.opt-2.pyc File 10020 bytes June 19 2025 12:11:17.
fixer_util.cpython-39.pyc File 12183 bytes June 19 2025 12:11:11.
main.cpython-39.opt-1.pyc File 8684 bytes June 19 2025 12:11:16.
main.cpython-39.opt-2.pyc File 6931 bytes June 19 2025 12:11:17.
main.cpython-39.pyc File 8702 bytes June 19 2025 12:11:11.
patcomp.cpython-39.opt-1.pyc File 5402 bytes June 19 2025 12:11:16.
patcomp.cpython-39.opt-2.pyc File 4894 bytes June 19 2025 12:11:17.
patcomp.cpython-39.pyc File 5618 bytes June 19 2025 12:11:11.
pygram.cpython-39.opt-1.pyc File 1275 bytes June 19 2025 12:11:11.
pygram.cpython-39.opt-2.pyc File 1070 bytes June 19 2025 12:11:17.
pygram.cpython-39.pyc File 1275 bytes June 19 2025 12:11:11.
pytree.cpython-39.opt-1.pyc File 23685 bytes June 19 2025 12:11:16.
pytree.cpython-39.opt-2.pyc File 14982 bytes June 19 2025 12:11:17.
pytree.cpython-39.pyc File 24308 bytes June 19 2025 12:11:11.
refactor.cpython-39.opt-1.pyc File 20626 bytes June 19 2025 12:11:16.
refactor.cpython-39.opt-2.pyc File 16580 bytes June 19 2025 12:11:17.
refactor.cpython-39.pyc File 20656 bytes June 19 2025 12:11:11.

Reading File: //opt/alt//python39/lib64/python3.9/lib2to3/__pycache__/fixer_base.cpython-39.pyc

a

XC?h"�@sTdZddlZddlmZddlmZddlmZGdd�de�Z	Gd	d
�d
e	�Z
dS)z2Base class for fixers (optional, but recommended).�N�)�PatternCompiler)�pygram)�does_tree_importc@s�eZdZdZdZdZdZdZdZe	�
d�Ze�Z
dZdZdZdZdZdZejZdd�Zd	d
�Zdd�Zd
d�Zdd�Zddd�Zdd�Zddd�Zdd�Zdd�Z dd�Z!dS) �BaseFixaOptional base class for fixers.

    The subclass name must be FixFooBar where FooBar is the result of
    removing underscores and capitalizing the words of the fix name.
    For example, the class name for a fixer named 'has_key' should be
    FixHasKey.
    NrZpostF�cCs||_||_|��dS)aInitializer.  Subclass may override.

        Args:
            options: a dict containing the options passed to RefactoringTool
            that could be used to customize the fixer through the command line.
            log: a list to append warnings and other messages to.
        N)�options�log�compile_pattern)�selfrr	�r�7/opt/alt/python39/lib64/python3.9/lib2to3/fixer_base.py�__init__/szBaseFix.__init__cCs,|jdur(t�}|j|jdd�\|_|_dS)z�Compiles self.PATTERN into self.pattern.

        Subclass may override if it doesn't want to use
        self.{pattern,PATTERN} in .match().
        NT)Z	with_tree)�PATTERNrr
�pattern�pattern_tree)rZPCrrr
r
;s

�zBaseFix.compile_patterncCs
||_dS)zOSet the filename.

        The main refactoring tool should call this.
        N)�filename)rrrrr
�set_filenameFszBaseFix.set_filenamecCsd|i}|j�||�o|S)aReturns match for a given parse tree node.

        Should return a true or false object (not necessarily a bool).
        It may return a non-empty dict of matching sub-nodes as
        returned by a matching pattern.

        Subclass may override.
        �node)r�match�rrZresultsrrr
rMs	z
BaseFix.matchcCs
t��dS)a�Returns the transformation for a given parse tree node.

        Args:
          node: the root of the parse tree that matched the fixer.
          results: a dict mapping symbolic names to part of the match.

        Returns:
          None, or a node that is a modified copy of the
          argument node.  The node argument may also be modified in-place to
          effect the same change.

        Subclass *must* override.
        N)�NotImplementedErrorrrrr
�	transformYszBaseFix.transform�xxx_todo_changemecCs2|}||jvr"|tt|j��}q|j�|�|S)z�Return a string suitable for use as an identifier

        The new name is guaranteed not to conflict with other identifiers.
        )�
used_names�str�next�numbers�add)r�template�namerrr
�new_nameis

zBaseFix.new_namecCs.|jrd|_|j�d|j�|j�|�dS)NFz### In file %s ###)�	first_logr	�appendr)r�messagerrr
�log_messagetszBaseFix.log_messagecCs>|��}|��}d|_d}|�|||f�|r:|�|�dS)aWarn the user that a given chunk of code is not valid Python 3,
        but that it cannot be converted automatically.

        First argument is the top-level node for the code in question.
        Optional second argument is why it can't be converted.
        �zLine %d: could not convert: %sN)�
get_linenoZclone�prefixr%)rr�reason�linenoZ
for_output�msgrrr
�cannot_convertzszBaseFix.cannot_convertcCs|��}|�d||f�dS)z�Used for warning the user about possible uncertainty in the
        translation.

        First argument is the top-level node for the code in question.
        Optional second argument is why it can't be converted.
        zLine %d: %sN)r'r%)rrr)r*rrr
�warning�szBaseFix.warningcCs(|j|_|�|�t�d�|_d|_dS)z�Some fixers need to maintain tree-wide state.
        This method is called once, at the start of tree fix-up.

        tree - the root node of the tree to be processed.
        filename - the name of the file the tree came from.
        rTN)rr�	itertools�countrr"�rZtreerrrr
�
start_tree�s
zBaseFix.start_treecCsdS)z�Some fixers need to maintain tree-wide state.
        This method is called once, at the conclusion of tree fix-up.

        tree - the root node of the tree to be processed.
        filename - the name of the file the tree came from.
        Nrr0rrr
�finish_tree�szBaseFix.finish_tree)r)N)"�__name__�
__module__�__qualname__�__doc__rrrrrr.r/r�setr�orderZexplicitZ	run_orderZ_accept_typeZkeep_line_orderZ
BM_compatiblerZpython_symbolsZsymsrr
rrrr!r%r,r-r1r2rrrr
rs4



rcs,eZdZdZdZ�fdd�Zdd�Z�ZS)�ConditionalFixz@ Base class for fixers which not execute if an import is found. Ncstt|�j|�d|_dS)N)�superr9r1�_should_skip)r�args��	__class__rr
r1�szConditionalFix.start_treecCsJ|jdur|jS|j�d�}|d}d�|dd��}t|||�|_|jS)N�.���)r;�skip_on�split�joinr)rrZpkgr rrr
�should_skip�s
zConditionalFix.should_skip)r3r4r5r6rAr1rD�
__classcell__rrr=r
r9�sr9)r6r.Zpatcomprr&rZ
fixer_utilr�objectrr9rrrr
�<module>s

SILENT KILLER Tool