Move NotImplementedType to types.pyi (#14966)

This commit is contained in:
Randolf Scholz
2025-11-02 15:00:52 +01:00
committed by GitHub
parent 8aaa86f6a4
commit 7fde97036f
3 changed files with 26 additions and 12 deletions
+2 -2
View File
@@ -717,9 +717,9 @@ if sys.version_info >= (3, 10):
@final
class EllipsisType: ...
from builtins import _NotImplementedType
@final
class NotImplementedType(Any): ...
NotImplementedType = _NotImplementedType
@final
class UnionType:
@property