Skip to content

Commit 4214724

Browse files
bump TypeAliasType re-export guard
1 parent a1d4237 commit 4214724

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/typing_extensions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3613,14 +3613,14 @@ def __ror__(self, other):
36133613
return typing.Union[other, self]
36143614

36153615

3616-
# Breakpoint: https://github.com/python/cpython/pull/124795
3617-
if sys.version_info >= (3, 14):
3616+
# Breakpoint: https://github.com/python/cpython/pull/149172
3617+
if sys.version_info >= (3, 15):
36183618
TypeAliasType = typing.TypeAliasType
3619-
# <=3.13
3619+
# <=3.14
36203620
else:
36213621
# Breakpoint: https://github.com/python/cpython/pull/103764
36223622
if sys.version_info >= (3, 12):
3623-
# 3.12-3.13
3623+
# 3.12-3.14
36243624
def _is_unionable(obj):
36253625
"""Corresponds to is_unionable() in unionobject.c in CPython."""
36263626
return obj is None or isinstance(obj, (

0 commit comments

Comments
 (0)