/snap/core24/1643/usr/lib/python3.12/unittest
NameSizeModeActions
__pycache__/-0755rm
async_case.py54650644editdlrm
case.py575310644editdlrm
loader.py210100644editdlrm
main.py119910644editdlrm
mock.py1049610644editdlrm
result.py91300644editdlrm
runner.py103680644editdlrm
signals.py24030644editdlrm
suite.py135120644editdlrm
util.py52150644editdlrm
_log.py27460644editdlrm
__init__.py34870644editdlrm
__main__.py4720644editdlrm
Edit: /snap/core24/1643/usr/lib/python3.12/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)