文件操作 - __init__.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3.11/distutils/__init__.py
编辑文件内容
"""distutils The main package for the Python Module Distribution Utilities. Normally used from a setup script as from distutils.core import setup setup (...) """ import sys import warnings __version__ = sys.version[:sys.version.index(' ')] _DEPRECATION_MESSAGE = ("The distutils package is deprecated and slated for " "removal in Python 3.12. Use setuptools or check " "PEP 632 for potential alternatives") warnings.warn(_DEPRECATION_MESSAGE, DeprecationWarning, 2)
修改文件时间
将文件时间修改为当前时间的前一年
删除文件