Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
compiler /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
1023
B
-rw-r--r--
2022-07-01 10:30
__init__.pyc
1.26
KB
-rw-r--r--
2022-10-05 19:26
ast.py
36.63
KB
-rw-r--r--
2022-07-01 10:30
ast.pyc
69.67
KB
-rw-r--r--
2022-10-05 19:26
consts.py
468
B
-rw-r--r--
2022-07-01 10:30
consts.pyc
735
B
-rw-r--r--
2022-10-05 19:26
future.py
1.85
KB
-rw-r--r--
2022-07-01 10:30
future.pyc
2.87
KB
-rw-r--r--
2022-10-05 19:26
misc.py
1.75
KB
-rw-r--r--
2022-07-01 10:30
misc.pyc
3.61
KB
-rw-r--r--
2022-10-05 19:26
pyassem.py
23.7
KB
-rw-r--r--
2022-07-01 10:30
pyassem.pyc
25.19
KB
-rw-r--r--
2022-10-05 19:26
pycodegen.py
46.69
KB
-rw-r--r--
2022-07-01 10:30
pycodegen.pyc
54.85
KB
-rw-r--r--
2022-10-05 19:26
symbols.py
14.15
KB
-rw-r--r--
2022-07-01 10:30
symbols.pyc
17.15
KB
-rw-r--r--
2022-10-05 19:26
syntax.py
1.41
KB
-rw-r--r--
2022-07-01 10:30
syntax.pyc
1.83
KB
-rw-r--r--
2022-10-05 19:26
transformer.py
51.87
KB
-rw-r--r--
2022-07-01 10:30
transformer.pyc
46.28
KB
-rw-r--r--
2022-10-05 19:26
visitor.py
3.8
KB
-rw-r--r--
2022-07-01 10:30
visitor.pyc
4.07
KB
-rw-r--r--
2022-10-05 19:26
Save
Rename
� �̾bc @ s[ d d l m Z d d d � � YZ d e f d � � YZ e Z d d d � Z d � Z d S( i����( t astt ASTVisitorc B s8 e Z d Z d Z d � Z d � Z d � Z d � Z RS( s Performs a depth-first walk of the AST The ASTVisitor will walk the AST, performing either a preorder or postorder traversal depending on which method is called. methods: preorder(tree, visitor) postorder(tree, visitor) tree: an instance of ast.Node visitor: an instance with visitXXX methods The ASTVisitor is responsible for walking over the tree in the correct order. For each node, it checks the visitor argument for a method named 'visitNodeType' where NodeType is the name of the node's class, e.g. Class. If the method exists, it is called with the node as its sole argument. The visitor method for a particular node type can control how child nodes are visited during a preorder walk. (It can't control the order during a postorder walk, because it is called _after_ the walk has occurred.) The ASTVisitor modifies the visitor argument by adding a visit method to the visitor; this method can be used to visit a child node of arbitrary type. i c C s d | _ i | _ d S( N( t Nonet nodet _cache( t self( ( s&