We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d4237 commit 4214724Copy full SHA for 4214724
1 file changed
src/typing_extensions.py
@@ -3613,14 +3613,14 @@ def __ror__(self, other):
3613
return typing.Union[other, self]
3614
3615
3616
-# Breakpoint: https://github.com/python/cpython/pull/124795
3617
-if sys.version_info >= (3, 14):
+# Breakpoint: https://github.com/python/cpython/pull/149172
+if sys.version_info >= (3, 15):
3618
TypeAliasType = typing.TypeAliasType
3619
-# <=3.13
+# <=3.14
3620
else:
3621
# Breakpoint: https://github.com/python/cpython/pull/103764
3622
if sys.version_info >= (3, 12):
3623
- # 3.12-3.13
+ # 3.12-3.14
3624
def _is_unionable(obj):
3625
"""Corresponds to is_unionable() in unionobject.c in CPython."""
3626
return obj is None or isinstance(obj, (
0 commit comments