Update typing_extensions for 4.7.* (#10344)

This commit is contained in:
Jelle Zijlstra
2023-07-22 03:51:22 -08:00
committed by GitHub
parent 65cb3735ec
commit f577c4c133
7 changed files with 152 additions and 70 deletions

View File

@@ -956,3 +956,7 @@ if sys.version_info >= (3, 12):
if sys.version_info >= (3, 10):
def __or__(self, right: Any) -> _SpecialForm: ...
def __ror__(self, left: Any) -> _SpecialForm: ...
if sys.version_info >= (3, 13):
def is_protocol(__tp: type) -> bool: ...
def get_protocol_members(__tp: type) -> frozenset[str]: ...