master
/ miniconda3 / pkgs / setuptools-67.8.0-py310h06a4308_0 / lib / python3.10 / site-packages / setuptools / py312compat.py

py312compat.py @a663dc1 raw · history · blame

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)