/opt/alt/python37/lib64/python3.7/unittest
NameSizeModeActions
__pycache__/-0755rm
case.py589170644editdlrm
loader.py227020644editdlrm
main.py112380644editdlrm
mock.py828960644editdlrm
result.py74420644editdlrm
runner.py77670644editdlrm
signals.py24030644editdlrm
suite.py104790644editdlrm
util.py52150644editdlrm
__init__.py32070644editdlrm
__main__.py4720644editdlrm
Edit: /opt/alt/python37/lib64/python3.7/unittest/__main__.py (472B)
"""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 main(module=None)