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.
no_type_check_decorator
__all__
1 parent f684c9a commit 2638b86Copy full SHA for 2638b86
1 file changed
src/typing_extensions.py
@@ -148,7 +148,6 @@
148
'ValuesView',
149
'cast',
150
'no_type_check',
151
- 'no_type_check_decorator',
152
]
153
154
# for backward compatibility
@@ -4312,3 +4311,7 @@ def type_repr(value):
4312
4311
Generic = typing.Generic
4313
ForwardRef = typing.ForwardRef
4314
Annotated = typing.Annotated
+
4315
+# Breakpoint: https://github.com/python/cpython/pull/133602
4316
+if sys.version_info < (3, 15, 0):
4317
+ __all__.append("no_type_check_decorator")
0 commit comments