From 443f8c533dfd7445a0800239d7d3b3173c262d68 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 30 Jul 2022 09:16:22 +0300 Subject: [PATCH] gh-94938: Fix test (GH-95396) (cherry picked from commit 0956b6d9c44f66cc152c6afe22a3793e5b157cfd) Co-authored-by: Serhiy Storchaka --- 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 91ef9c94695c1e..eee269093b2784 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):