Make type of unitest.mock.Any a subclass of Any (#14708)

This commit is contained in:
Semyon Moroz
2025-09-14 22:25:41 +04:00
committed by GitHub
parent b2777f4cbb
commit 0d100b9110
2 changed files with 30 additions and 2 deletions
+2 -1
View File
@@ -508,7 +508,8 @@ class MagicProxy(Base):
def create_mock(self) -> Any: ...
def __get__(self, obj: Any, _type: Any | None = None) -> Any: ...
class _ANY:
# See https://github.com/python/typeshed/issues/14701
class _ANY(Any):
def __eq__(self, other: object) -> Literal[True]: ...
def __ne__(self, other: object) -> Literal[False]: ...
__hash__: ClassVar[None] # type: ignore[assignment]