8000 Update typing_extensions to 4.13.0rc1 by srittau · Pull Request #13671 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Update typing_extensions to 4.13.0rc1 #13671

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Mar 19, 2025
Prev Previous commit
Next Next commit
Add missing annotations
  • Loading branch information
srittau committed Mar 19, 2025
commit 845802f46c6bcc288556279b4aec97677f049ede
4 changes: 2 additions & 2 deletions stdlib/typing_extensions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import enum
import sys
import typing
from _collections_abc import dict_items, dict_keys, dict_values
from _typeshed import IdentityFunction, Incomplete
from _typeshed import IdentityFunction, Incomplete, Unused
from contextlib import AbstractAsyncContextManager as AsyncContextManager, AbstractContextManager as ContextManager
from types import ModuleType
from typing import ( # noqa: Y022,Y037,Y038,Y039
Expand Down Expand Up @@ -584,7 +584,7 @@ else:
def __module__(self) -> str | None: ... # type: ignore[override]
# Returns typing._GenericAlias, which isn't stubbed.
def __getitem__(self, parameters: Incomplete | tuple[Incomplete, ...]) -> Any: ...
def __init_subclass__(cls, *args, **kwargs) -> NoReturn: ...
def __init_subclass__(cls, *args: Unused, **kwargs: Unused) -> NoReturn: ...
def __call__(self) -> NoReturn: ...
if sys.version_info >= (3, 10):
def __or__(self, right: Any) -> _SpecialForm: ...
Expand Down
Loading
0