/opt/alt/python34/lib64/python3.4/unittest
NameSizeModeActions
__pycache__/-0755rm
case.py569000644editdlrm
loader.py166060644editdlrm
main.py97590644editdlrm
mock.py769490644editdlrm
result.py73710644editdlrm
runner.py74840644editdlrm
signals.py24030644editdlrm
suite.py104780644editdlrm
util.py54290644editdlrm
__init__.py27820644editdlrm
__main__.py4850644editdlrm
Edit: /opt/alt/python34/lib64/python3.4/unittest/__main__.py (485B)
"""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)