Linux premium134.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
LiteSpeed
: 162.0.232.104 | : 216.73.217.117
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib64 /
python3.12 /
lib2to3 /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-312.opt-1.pyc
346
B
-rw-r--r--
__init__.cpython-312.opt-2.pyc
346
B
-rw-r--r--
__init__.cpython-312.pyc
346
B
-rw-r--r--
__main__.cpython-312.opt-1.pyc
277
B
-rw-r--r--
__main__.cpython-312.opt-2.pyc
277
B
-rw-r--r--
__main__.cpython-312.pyc
277
B
-rw-r--r--
btm_matcher.cpython-312.opt-1....
7.15
KB
-rw-r--r--
btm_matcher.cpython-312.opt-2....
5.65
KB
-rw-r--r--
btm_matcher.cpython-312.pyc
7.15
KB
-rw-r--r--
btm_utils.cpython-312.opt-1.py...
10.83
KB
-rw-r--r--
btm_utils.cpython-312.opt-2.py...
9.39
KB
-rw-r--r--
btm_utils.cpython-312.pyc
10.83
KB
-rw-r--r--
fixer_base.cpython-312.opt-1.p...
7.69
KB
-rw-r--r--
fixer_base.cpython-312.opt-2.p...
5.08
KB
-rw-r--r--
fixer_base.cpython-312.pyc
7.69
KB
-rw-r--r--
fixer_util.cpython-312.opt-1.p...
21.28
KB
-rw-r--r--
fixer_util.cpython-312.opt-2.p...
19.32
KB
-rw-r--r--
fixer_util.cpython-312.pyc
21.28
KB
-rw-r--r--
main.cpython-312.opt-1.pyc
13.68
KB
-rw-r--r--
main.cpython-312.opt-2.pyc
11.99
KB
-rw-r--r--
main.cpython-312.pyc
13.73
KB
-rw-r--r--
patcomp.cpython-312.opt-1.pyc
9.19
KB
-rw-r--r--
patcomp.cpython-312.opt-2.pyc
8.73
KB
-rw-r--r--
patcomp.cpython-312.pyc
9.74
KB
-rw-r--r--
pygram.cpython-312.opt-1.pyc
1.85
KB
-rw-r--r--
pygram.cpython-312.opt-2.pyc
1.66
KB
-rw-r--r--
pygram.cpython-312.pyc
1.85
KB
-rw-r--r--
pytree.cpython-312.opt-1.pyc
32.41
KB
-rw-r--r--
pytree.cpython-312.opt-2.pyc
24.28
KB
-rw-r--r--
pytree.cpython-312.pyc
33.88
KB
-rw-r--r--
refactor.cpython-312.opt-1.pyc
33.45
KB
-rw-r--r--
refactor.cpython-312.opt-2.pyc
29.65
KB
-rw-r--r--
refactor.cpython-312.pyc
33.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : btm_matcher.cpython-312.pyc
� �֦i� � �v � d Z dZddlZddlZddlmZ ddlmZ ddlm Z G d� d e � Z G d � de � Zi a d� Zy) a� 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.z+George Boutsioukis <gboutsioukis@gmail.com>� N)�defaultdict� )�pytree)�reduce_treec �8 � e Zd ZdZ ej � Zd� Zy)�BMNodez?Class for a node of the Aho-Corasick automaton used in matchingc �j � i | _ g | _ t t j � | _ d| _ y )N� )�transition_table�fixers�nextr �count�id�content��selfs �,/usr/lib64/python3.12/lib2to3/btm_matcher.py�__init__zBMNode.__init__ s( � � "�������v�|�|�$������ N)�__name__� __module__�__qualname__�__doc__� itertoolsr r � r r r r s � �I��I�O�O��E�r r c �. � e Zd ZdZd� Zd� Zd� Zd� Zd� Zy)� BottomMatcherzgThe main matcher class. After instantiating the patterns should be added using the add_fixer methodc � � t � | _ t � | _ | j g| _ g | _ t j d� | _ y )N�RefactoringTool) �set�matchr �root�nodesr �logging� getLogger�loggerr s r r zBottomMatcher.__init__ s; � ��U�� ��H�� ��i�i�[�� �����'�'�(9�:��r c � � | j j |� t |j � }|j � }| j || j �� }|D ] }|j j |� � y)z�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 reached��startN)r �appendr �pattern_tree�get_linear_subpattern�addr"