From 5362a2c67825aaac2a9d6e78c38999b78cde308f Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 28 Jul 2022 20:33:39 +0300 Subject: [PATCH] gh-94938: Fix test --- Lib/test/test_call.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py index a2eec419ab5b41..4c971bc5ed0586 100644 --- a/Lib/test/test_call.py +++ b/Lib/test/test_call.py @@ -18,11 +18,6 @@ def __hash__(self): # Guaranteed different hash return str.__hash__(self) ^ 3 - def __eq__(self, other): - return False - def __hash__(self): - return str.__hash__(self) - class FunctionCalls(unittest.TestCase):