/usr/share/cagefs-skeleton/opt/alt/python311/lib64/python3.11/unittest
"""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)
.
Edit
..
Edit
__init__.py
Edit
__main__.py
Edit
__pycache__
Edit
_log.py
Edit
async_case.py
Edit
case.py
Edit
loader.py
Edit
main.py
Edit
mock.py
Edit
result.py
Edit
runner.py
Edit
signals.py
Edit
suite.py
Edit
util.py
Edit