X7ROOT File Manager
Current Path:
/opt/alt/python36/lib64/python3.6/unittest
opt
/
alt
/
python36
/
lib64
/
python3.6
/
unittest
/
ðŸ“
..
📄
__init__.py
(3.13 KB)
📄
__main__.py
(485 B)
ðŸ“
__pycache__
📄
case.py
(56.84 KB)
📄
loader.py
(21.7 KB)
📄
main.py
(10.3 KB)
📄
mock.py
(77.98 KB)
📄
result.py
(7.27 KB)
📄
runner.py
(7.57 KB)
📄
signals.py
(2.35 KB)
📄
suite.py
(10.23 KB)
📄
util.py
(5.31 KB)
Editing: __main__.py
"""Main entry point""" import sys if sys.argv[0].endswith("__main__.py"): import os.path # We change sys.argv[0] to make help message more useful # use executable without path, unquoted # (it's just a hint anyway) # (if you have spaces in your executable you get what you deserve!) executable = os.path.basename(sys.executable) sys.argv[0] = executable + " -m unittest" del os __unittest = True from .main import main, TestProgram main(module=None)
Upload File
Create Folder