Skip to content

Commit 5a6e0b6

Browse files
committed
[typing-extensions] Update to 4.14.0 final
1 parent 106078c commit 5a6e0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/typing_extensions.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,6 @@ class Sentinel:
697697
if sys.version_info >= (3, 14):
698698
def __or__(self, other: Any) -> UnionType: ... # other can be any type form legal for unions
699699
def __ror__(self, other: Any) -> UnionType: ... # other can be any type form legal for unions
700-
else:
700+
elif sys.version_info >= (3, 10):
701701
def __or__(self, other: Any) -> _SpecialForm: ... # other can be any type form legal for unions
702702
def __ror__(self, other: Any) -> _SpecialForm: ... # other can be any type form legal for unions

0 commit comments

Comments
 (0)