文件操作 - _compat.py
返回文件管理
返回主菜单
删除本文件
文件: /opt/alt/python37/lib64/python3.7/site-packages/pyrsistent/_compat.py
编辑文件内容
from six import string_types # enum compat try: from enum import Enum except: class Enum(object): pass # no objects will be instances of this class # collections compat try: from collections.abc import ( Container, Hashable, Iterable, Mapping, Sequence, Set, Sized, ) except ImportError: from collections import ( Container, Hashable, Iterable, Mapping, Sequence, Set, Sized, )
修改文件时间
将文件时间修改为当前时间的前一年
删除文件