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.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
pycparser /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
2.83
KB
-rw-r--r--
2015-06-09 23:00
__init__.pyc
2.76
KB
-rw-r--r--
2015-11-19 18:46
__init__.pyo
2.76
KB
-rw-r--r--
2015-11-19 18:46
_ast_gen.py
8.46
KB
-rw-r--r--
2015-06-09 23:00
_ast_gen.pyc
9.14
KB
-rw-r--r--
2015-11-19 18:46
_ast_gen.pyo
9.14
KB
-rw-r--r--
2015-11-19 18:46
_build_tables.py
851
B
-rw-r--r--
2015-06-09 23:00
_build_tables.pyc
637
B
-rw-r--r--
2015-11-19 18:46
_build_tables.pyo
637
B
-rw-r--r--
2015-11-19 18:46
_c_ast.cfg
4.08
KB
-rw-r--r--
2015-06-09 23:00
ast_transforms.py
3.48
KB
-rw-r--r--
2015-06-09 23:00
ast_transforms.pyc
2.74
KB
-rw-r--r--
2015-11-19 18:46
ast_transforms.pyo
2.68
KB
-rw-r--r--
2015-11-19 18:46
c_ast.py
22.79
KB
-rw-r--r--
2015-11-19 18:46
c_ast.pyc
38.74
KB
-rw-r--r--
2015-11-19 18:46
c_ast.pyo
38.74
KB
-rw-r--r--
2015-11-19 18:46
c_generator.py
13.25
KB
-rw-r--r--
2015-06-09 23:00
c_generator.pyc
18.44
KB
-rw-r--r--
2015-11-19 18:46
c_generator.pyo
18.44
KB
-rw-r--r--
2015-11-19 18:46
c_lexer.py
14.11
KB
-rw-r--r--
2015-11-19 18:46
c_lexer.pyc
15.01
KB
-rw-r--r--
2015-11-19 18:46
c_lexer.pyo
15.01
KB
-rw-r--r--
2015-11-19 18:46
c_parser.py
60.75
KB
-rw-r--r--
2015-11-19 18:46
c_parser.pyc
62.59
KB
-rw-r--r--
2015-11-19 18:46
c_parser.pyo
62.43
KB
-rw-r--r--
2015-11-19 18:46
lextab.py
7.28
KB
-rw-r--r--
2015-11-19 18:46
lextab.pyc
6.94
KB
-rw-r--r--
2015-11-19 18:46
lextab.pyo
6.94
KB
-rw-r--r--
2015-11-19 18:46
plyparser.py
1.56
KB
-rw-r--r--
2015-06-09 23:00
plyparser.pyc
2.59
KB
-rw-r--r--
2015-11-19 18:46
plyparser.pyo
2.59
KB
-rw-r--r--
2015-11-19 18:46
yacctab.py
126.53
KB
-rw-r--r--
2015-11-19 18:46
yacctab.pyc
99.45
KB
-rw-r--r--
2015-11-19 18:46
yacctab.pyo
99.45
KB
-rw-r--r--
2015-11-19 18:46
Save
Rename
#------------------------------------------------------------------------------ # pycparser: ast_transforms.py # # Some utilities used by the parser to create a friendlier AST. # # Copyright (C) 2008-2015, Eli Bendersky # License: BSD #------------------------------------------------------------------------------ from . import c_ast def fix_switch_cases(switch_node): """ The 'case' statements in a 'switch' come out of parsing with one child node, so subsequent statements are just tucked to the parent Compound. Additionally, consecutive (fall-through) case statements come out messy. This is a peculiarity of the C grammar. The following: switch (myvar) { case 10: k = 10; p = k + 1; return 10; case 20: case 30: return 20; default: break; } Creates this tree (pseudo-dump): Switch ID: myvar Compound: Case 10: k = 10 p = k + 1 return 10 Case 20: Case 30: return 20 Default: break The goal of this transform it to fix this mess, turning it into the following: Switch ID: myvar Compound: Case 10: k = 10 p = k + 1 return 10 Case 20: Case 30: return 20 Default: break A fixed AST node is returned. The argument may be modified. """ assert isinstance(switch_node, c_ast.Switch) if not isinstance(switch_node.stmt, c_ast.Compound): return switch_node # The new Compound child for the Switch, which will collect children in the # correct order new_compound = c_ast.Compound([], switch_node.stmt.coord) # The last Case/Default node last_case = None # Goes over the children of the Compound below the Switch, adding them # either directly below new_compound or below the last Case as appropriate for child in switch_node.stmt.block_items: if isinstance(child, (c_ast.Case, c_ast.Default)): # If it's a Case/Default: # 1. Add it to the Compound and mark as "last case" # 2. If its immediate child is also a Case or Default, promote it # to a sibling. new_compound.block_items.append(child) _extract_nested_case(child, new_compound.block_items) last_case = new_compound.block_items[-1] else: # Other statements are added as children to the last case, if it # exists. if last_case is None: new_compound.block_items.append(child) else: last_case.stmts.append(child) switch_node.stmt = new_compound return switch_node def _extract_nested_case(case_node, stmts_list): """ Recursively extract consecutive Case statements that are made nested by the parser and add them to the stmts_list. """ if isinstance(case_node.stmts[0], (c_ast.Case, c_ast.Default)): stmts_list.append(case_node.stmts.pop()) _extract_nested_case(stmts_list[-1], stmts_list)