mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
operator.eq: Any -> object (#6457)
This commit is contained in:
@@ -26,8 +26,8 @@ _P = ParamSpec("_P")
|
||||
|
||||
def lt(__a: Any, __b: Any) -> Any: ...
|
||||
def le(__a: Any, __b: Any) -> Any: ...
|
||||
def eq(__a: Any, __b: Any) -> Any: ...
|
||||
def ne(__a: Any, __b: Any) -> Any: ...
|
||||
def eq(__a: object, __b: object) -> Any: ...
|
||||
def ne(__a: object, __b: object) -> Any: ...
|
||||
def ge(__a: Any, __b: Any) -> Any: ...
|
||||
def gt(__a: Any, __b: Any) -> Any: ...
|
||||
def not_(__a: object) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user