文件操作 - _compat.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/service_identity/_compat.py
编辑文件内容
""" Avoid depending on any particular Python 3 compatibility approach. """ import sys PY3 = sys.version_info[0] == 3 if PY3: # pragma: nocover maketrans = bytes.maketrans text_type = str else: # pragma: nocover import string maketrans = string.maketrans text_type = unicode # noqa
修改文件时间
将文件时间修改为当前时间的前一年
删除文件