📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-27 08:18:40
📂
/
/
opt
/
alt
/
python312
/
lib
/
python3.12
/
site-packages
/
setuptools
✏️
Editing: py312compat.py
import sys import shutil def shutil_rmtree(path, ignore_errors=False, onexc=None): if sys.version_info >= (3, 12): return shutil.rmtree(path, ignore_errors, onexc=onexc) def _handler(fn, path, excinfo): return onexc(fn, path, excinfo[1]) return shutil.rmtree(path, ignore_errors, onerror=_handler)
💾 Save Changes
❌ Cancel