stdlib: Run stubdefaulter on Linux for 3.9 (#9663)

This commit is contained in:
Jelle Zijlstra
2023-02-02 16:39:22 -08:00
committed by GitHub
parent 100cd62373
commit 5b24c7bb41
8 changed files with 39 additions and 36 deletions

View File

@@ -25,15 +25,18 @@ def byte_compile(
) -> None: ...
def rfc822_escape(header: str) -> str: ...
def run_2to3(
files: Iterable[str], fixer_names: Iterable[str] | None = ..., options: Mapping[str, Any] | None = ..., explicit: Unused = ...
files: Iterable[str],
fixer_names: Iterable[str] | None = None,
options: Mapping[str, Any] | None = None,
explicit: Unused = None,
) -> None: ...
def copydir_run_2to3(
src: StrPath,
dest: StrPath,
template: str | None = ...,
fixer_names: Iterable[str] | None = ...,
options: Mapping[str, Any] | None = ...,
explicit: Container[str] | None = ...,
template: str | None = None,
fixer_names: Iterable[str] | None = None,
options: Mapping[str, Any] | None = None,
explicit: Container[str] | None = None,
) -> list[str]: ...
class Mixin2to3: