文件操作 - __main__.py
返回文件管理
返回主菜单
删除本文件
文件: /opt/alt/python35/lib64/python3.5/unittest/__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)
修改文件时间
将文件时间修改为当前时间的前一年
删除文件