diff options
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/command/easy_install.py | 4 | ||||
-rw-r--r-- | setuptools/py312compat.py (renamed from setuptools/_py312compat.py) | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index bf6c964e..3185ee1d 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -62,7 +62,7 @@ from pkg_resources import ( VersionConflict, DEVELOP_DIST, ) import pkg_resources -from .. import _py312compat +from .. import py312compat from .._path import ensure_directory from ..extern.jaraco.text import yield_lines @@ -2291,7 +2291,7 @@ def load_launcher_manifest(name): def _rmtree(path, ignore_errors=False, onexc=auto_chmod): - return _py312compat.shutil_rmtree(path, ignore_errors, onexc) + return py312compat.shutil_rmtree(path, ignore_errors, onexc) def current_umask(): diff --git a/setuptools/_py312compat.py b/setuptools/py312compat.py index a17d5aec..a17d5aec 100644 --- a/setuptools/_py312compat.py +++ b/setuptools/py312compat.py |