Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
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
2025-12-19 06:49
pgen2
[ DIR ]
drwxr-xr-x
2025-12-19 06:49
Grammar.txt
6.43
KB
-rw-r--r--
2025-11-12 17:54
Grammar2.7.5.final.0.pickle
19.75
KB
-rw-r--r--
2025-11-12 17:54
PatternGrammar.txt
793
B
-rw-r--r--
2025-11-12 17:54
PatternGrammar2.7.5.final.0.pickle
1.35
KB
-rw-r--r--
2025-11-12 17:54
__init__.py
7
B
-rw-r--r--
2025-11-12 17:54
__init__.pyc
127
B
-rw-r--r--
2025-11-12 17:55
__init__.pyo
127
B
-rw-r--r--
2025-11-12 17:55
__main__.py
67
B
-rw-r--r--
2025-11-12 17:54
__main__.pyc
242
B
-rw-r--r--
2025-11-12 17:55
__main__.pyo
242
B
-rw-r--r--
2025-11-12 17:55
btm_matcher.py
6.67
KB
-rw-r--r--
2025-11-12 17:54
btm_matcher.pyc
5.69
KB
-rw-r--r--
2025-11-12 17:55
btm_matcher.pyo
5.69
KB
-rw-r--r--
2025-11-12 17:55
btm_utils.py
9.78
KB
-rw-r--r--
2025-11-12 17:54
btm_utils.pyc
7.39
KB
-rw-r--r--
2025-11-12 17:55
btm_utils.pyo
7.39
KB
-rw-r--r--
2025-11-12 17:55
fixer_base.py
6.69
KB
-rw-r--r--
2025-11-12 17:54
fixer_base.pyc
7.09
KB
-rw-r--r--
2025-11-12 17:55
fixer_base.pyo
7.09
KB
-rw-r--r--
2025-11-12 17:55
fixer_util.py
14.25
KB
-rw-r--r--
2025-11-12 17:54
fixer_util.pyc
14.34
KB
-rw-r--r--
2025-11-12 17:55
fixer_util.pyo
14.34
KB
-rw-r--r--
2025-11-12 17:55
main.py
11.33
KB
-rw-r--r--
2025-11-12 17:54
main.pyc
9.6
KB
-rw-r--r--
2025-11-12 17:55
main.pyo
9.56
KB
-rw-r--r--
2025-11-12 17:55
patcomp.py
6.92
KB
-rw-r--r--
2025-11-12 17:54
patcomp.pyc
6.51
KB
-rw-r--r--
2025-11-12 17:55
patcomp.pyo
6.21
KB
-rw-r--r--
2025-11-12 17:55
pygram.py
1.09
KB
-rw-r--r--
2025-11-12 17:54
pygram.pyc
1.38
KB
-rw-r--r--
2025-11-12 17:55
pygram.pyo
1.38
KB
-rw-r--r--
2025-11-12 17:55
pytree.py
28.36
KB
-rw-r--r--
2025-11-12 17:54
pytree.pyc
29.59
KB
-rw-r--r--
2025-11-12 17:55
pytree.pyo
28.73
KB
-rw-r--r--
2025-11-12 17:55
refactor.py
27.41
KB
-rw-r--r--
2025-11-12 17:54
refactor.pyc
23.4
KB
-rw-r--r--
2025-11-12 17:55
refactor.pyo
23.35
KB
-rw-r--r--
2025-11-12 17:55
Save
Rename
# Copyright 2006 Google, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. """Export the Python grammar and symbols.""" # Python imports import os # Local imports from .pgen2 import token from .pgen2 import driver from . import pytree # The grammar file _GRAMMAR_FILE = os.path.join(os.path.dirname(__file__), "Grammar.txt") _PATTERN_GRAMMAR_FILE = os.path.join(os.path.dirname(__file__), "PatternGrammar.txt") class Symbols(object): def __init__(self, grammar): """Initializer. Creates an attribute for each grammar symbol (nonterminal), whose value is the symbol's type (an int >= 256). """ for name, symbol in grammar.symbol2number.iteritems(): setattr(self, name, symbol) python_grammar = driver.load_grammar(_GRAMMAR_FILE) python_symbols = Symbols(python_grammar) python_grammar_no_print_statement = python_grammar.copy() del python_grammar_no_print_statement.keywords["print"] pattern_grammar = driver.load_grammar(_PATTERN_GRAMMAR_FILE) pattern_symbols = Symbols(pattern_grammar)