mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Add filters to stdlib/warnings.pyi (#5889)
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
from types import ModuleType, TracebackType
|
||||
from typing import Any, TextIO, Type, overload
|
||||
from typing import Any, Sequence, TextIO, Type, overload
|
||||
from typing_extensions import Literal
|
||||
|
||||
from _warnings import warn as warn, warn_explicit as warn_explicit
|
||||
|
||||
filters: Sequence[tuple[str, str | None, Type[Warning], str | None, int]] # undocumented, do not mutate
|
||||
|
||||
def showwarning(
|
||||
message: Warning | str, category: Type[Warning], filename: str, lineno: int, file: TextIO | None = ..., line: str | None = ...
|
||||
) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user