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 9a2c4bc commit adf7fc9Copy full SHA for adf7fc9
src/typing_extensions.py
@@ -4302,10 +4302,12 @@ def type_repr(value):
4302
# and some users rely on it.
4303
"_AnnotatedAlias",
4304
]
4305
+
4306
# Breakpoint: https://github.com/python/cpython/pull/133602
4307
if sys.version_info < (3, 15, 0):
4308
_typing_names.append("no_type_check_decorator")
4309
__all__.append("no_type_check_decorator")
4310
4311
globals().update(
4312
{name: getattr(typing, name) for name in _typing_names if hasattr(typing, name)}
4313
)
0 commit comments