mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Audit stdlib object annotations (#9519)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from _typeshed import StrPath
|
||||
from _typeshed import StrPath, Unused
|
||||
from collections.abc import Callable, Container, Iterable, Mapping
|
||||
from typing import Any
|
||||
from typing_extensions import Literal
|
||||
@@ -25,10 +25,7 @@ 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: Container[str] | None = ..., # unused
|
||||
files: Iterable[str], fixer_names: Iterable[str] | None = ..., options: Mapping[str, Any] | None = ..., explicit: Unused = ...
|
||||
) -> None: ...
|
||||
def copydir_run_2to3(
|
||||
src: StrPath,
|
||||
|
||||
Reference in New Issue
Block a user