forked from pypa/setuptools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-incorrect-implicit-return-types
- Loading branch information
Showing
12 changed files
with
111 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Prevent a ``TypeError: 'NoneType' object is not callable`` when ``shutil_rmtree`` is called without an ``onexc`` parameter on Python<=3.11 -- by :user:`Avasam` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Improvement for ``attr:`` directives in configuration to handle | ||
more edge cases related to complex ``package_dir``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix accidental implicit string concatenation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,26 @@ | ||
import sys | ||
from __future__ import annotations | ||
|
||
import shutil | ||
import sys | ||
from typing import Any, Callable, TYPE_CHECKING | ||
|
||
if TYPE_CHECKING: | ||
from _typeshed import StrOrBytesPath, ExcInfo | ||
|
||
# Same as shutil._OnExcCallback from typeshed | ||
_OnExcCallback = Callable[[Callable[..., Any], str, BaseException], object] | ||
|
||
|
||
def shutil_rmtree(path, ignore_errors=False, onexc=None): | ||
def shutil_rmtree( | ||
path: StrOrBytesPath, | ||
ignore_errors: bool = False, | ||
onexc: _OnExcCallback | None = None, | ||
) -> 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]) | ||
def _handler(fn: Callable[..., Any], path: str, excinfo: ExcInfo) -> None: | ||
if onexc: | ||
onexc(fn, path, excinfo[1]) | ||
|
||
return shutil.rmtree(path, ignore_errors, onerror=_handler) |
Oops, something went wrong.