Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.142.40.195
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib64 /
python2.7 /
Demo /
parser /
[ HOME SHELL ]
Name
Size
Permission
Action
FILES
91
B
-rw-r--r--
README
1.01
KB
-rw-r--r--
docstring.py
27
B
-rw-r--r--
docstring.pyc
175
B
-rw-r--r--
docstring.pyo
175
B
-rw-r--r--
example.py
5.59
KB
-rw-r--r--
example.pyc
7.04
KB
-rw-r--r--
example.pyo
7.04
KB
-rw-r--r--
simple.py
29
B
-rw-r--r--
simple.pyc
279
B
-rw-r--r--
simple.pyo
279
B
-rw-r--r--
source.py
741
B
-rw-r--r--
source.pyc
1.55
KB
-rw-r--r--
source.pyo
1.55
KB
-rw-r--r--
test_parser.py
1.16
KB
-rwxr-xr-x
test_parser.pyc
1.41
KB
-rw-r--r--
test_parser.pyo
1.41
KB
-rw-r--r--
test_unparse.py
5.44
KB
-rw-r--r--
test_unparse.pyc
8.45
KB
-rw-r--r--
test_unparse.pyo
8.45
KB
-rw-r--r--
unparse.py
16.85
KB
-rw-r--r--
unparse.pyc
23.44
KB
-rw-r--r--
unparse.pyo
23.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_parser.py
#! /usr/bin/env python # (Force the script to use the latest build.) # # test_parser.py import parser, traceback _numFailed = 0 def testChunk(t, fileName): global _numFailed print '----', fileName, try: st = parser.suite(t) tup = parser.st2tuple(st) # this discards the first ST; a huge memory savings when running # against a large source file like Tkinter.py. st = None new = parser.tuple2st(tup) except parser.ParserError, err: print print 'parser module raised exception on input file', fileName + ':' traceback.print_exc() _numFailed = _numFailed + 1 else: if tup != parser.st2tuple(new): print print 'parser module failed on input file', fileName _numFailed = _numFailed + 1 else: print 'o.k.' def testFile(fileName): t = open(fileName).read() testChunk(t, fileName) def test(): import sys args = sys.argv[1:] if not args: import glob args = glob.glob("*.py") args.sort() map(testFile, args) sys.exit(_numFailed != 0) if __name__ == '__main__': test()
Close