Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.59.73
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
lib2to3 /
[ HOME SHELL ]
Name
Size
Permission
Action
fixes
[ DIR ]
drwxr-xr-x
pgen2
[ DIR ]
drwxr-xr-x
Grammar.txt
6.93
KB
-rw-r--r--
PatternGrammar.txt
793
B
-rw-r--r--
__init__.py
7
B
-rw-r--r--
__init__.pyc
125
B
-rw-r--r--
__main__.py
67
B
-rw-r--r--
__main__.pyc
240
B
-rw-r--r--
btm_matcher.py
6.67
KB
-rw-r--r--
btm_matcher.pyc
5.67
KB
-rw-r--r--
btm_utils.py
9.78
KB
-rw-r--r--
btm_utils.pyc
7.36
KB
-rw-r--r--
fixer_base.py
6.62
KB
-rw-r--r--
fixer_base.pyc
6.99
KB
-rw-r--r--
fixer_util.py
14.25
KB
-rw-r--r--
fixer_util.pyc
14.27
KB
-rw-r--r--
main.py
11.33
KB
-rw-r--r--
main.pyc
9.58
KB
-rw-r--r--
patcomp.py
6.9
KB
-rw-r--r--
patcomp.pyc
6.42
KB
-rw-r--r--
pygram.py
1.13
KB
-rw-r--r--
pygram.pyc
1.4
KB
-rw-r--r--
pytree.py
28.36
KB
-rw-r--r--
pytree.pyc
29.44
KB
-rw-r--r--
refactor.py
27.37
KB
-rw-r--r--
refactor.pyc
23.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PatternGrammar.txt
# 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 '>'
Close