Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/typing_extensions.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -148,7 +148,6 @@
'ValuesView',
'cast',
'no_type_check',
'no_type_check_decorator',
]

# for backward compatibility
Expand DownExpand Up@@ -4312,3 +4311,7 @@ def type_repr(value):
Generic = typing.Generic
ForwardRef = typing.ForwardRef
Annotated = typing.Annotated

# Breakpoint: https://github.com/python/cpython/pull/133602
if sys.version_info < (3, 15, 0):
__all__.append("no_type_check_decorator")
Loading