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.130.109
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 /
compiler /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
1023
B
-rw-r--r--
__init__.pyc
1.26
KB
-rw-r--r--
ast.py
36.63
KB
-rw-r--r--
ast.pyc
69.67
KB
-rw-r--r--
consts.py
468
B
-rw-r--r--
consts.pyc
735
B
-rw-r--r--
future.py
1.85
KB
-rw-r--r--
future.pyc
2.87
KB
-rw-r--r--
misc.py
1.75
KB
-rw-r--r--
misc.pyc
3.61
KB
-rw-r--r--
pyassem.py
23.7
KB
-rw-r--r--
pyassem.pyc
25.19
KB
-rw-r--r--
pycodegen.py
46.69
KB
-rw-r--r--
pycodegen.pyc
54.85
KB
-rw-r--r--
symbols.py
14.15
KB
-rw-r--r--
symbols.pyc
17.15
KB
-rw-r--r--
syntax.py
1.41
KB
-rw-r--r--
syntax.pyc
1.83
KB
-rw-r--r--
transformer.py
51.87
KB
-rw-r--r--
transformer.pyc
46.28
KB
-rw-r--r--
visitor.py
3.8
KB
-rw-r--r--
visitor.pyc
4.07
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : syntax.pyc
� ;;Wgc @ s? d Z d d l m Z m Z d d � Z d d d � � YZ d S( s8 Check for errs in the AST. The Python parser does not catch all syntax errors. Others, like assignments with invalid targets, are caught in the code generation phase. The compiler package catches some errors in the transformer module. But it seems clearer to write checkers that use the AST to detect errors. i����( t astt walkc C s t | � } t | | � | j S( N( t SyntaxErrorCheckerR t errors( t treet multit v( ( s% /usr/lib/python2.7/compiler/syntax.pyt check s R c B s, e Z d Z d d � Z d � Z d � Z RS( s+ A visitor to find syntax errors in the AST.c C s | | _ d | _ d S( s� Create new visitor object. If optional argument multi is not None, then print messages for each error rather than raising a SyntaxError for the first. i N( R R ( t selfR ( ( s% /usr/lib/python2.7/compiler/syntax.pyt __init__ s c C sZ | j d | _ | j d k r: d | j | j | f GHn t d | | j | j f � d S( Ni s %s:%s: %ss %s (%s:%s)( R R t Nonet filenamet linenot SyntaxError( R t nodet msg( ( s% /usr/lib/python2.7/compiler/syntax.pyt error s c C s d S( N( ( R R ( ( s% /usr/lib/python2.7/compiler/syntax.pyt visitAssign'