[ty] Sync vendored typeshed stubs (#22321)

Co-authored-by: typeshedbot <>
Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
This commit is contained in:
github-actions[bot]
2026-01-01 01:29:12 +00:00
committed by GitHub
parent 7366a9e951
commit 8e45bac3c1
45 changed files with 524 additions and 246 deletions

View File

@@ -91,14 +91,14 @@ error[missing-argument]: No argument provided for required parameter `arg` of bo
7 | from typing_extensions import deprecated
|
info: Parameter declared here
--> stdlib/typing_extensions.pyi:1341:28
--> stdlib/typing_extensions.pyi:1301:28
|
1339 | stacklevel: int
1340 | def __init__(self, message: LiteralString, /, *, category: type[Warning] | None = ..., stacklevel: int = 1) -> None: ...
1341 | def __call__(self, arg: _T, /) -> _T: ...
1299 | stacklevel: int
1300 | def __init__(self, message: LiteralString, /, *, category: type[Warning] | None = ..., stacklevel: int = 1) -> None: ...
1301 | def __call__(self, arg: _T, /) -> _T: ...
| ^^^^^^^
1342 |
1343 | @final
1302 |
1303 | @final
|
info: rule `missing-argument` is enabled by default