summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-07-30 06:16:22 (GMT)
committerGitHub <noreply@github.com>2022-07-30 06:16:22 (GMT)
commit0956b6d9c44f66cc152c6afe22a3793e5b157cfd (patch)
tree074b5f60b412bf66e330bd5659943fff46b83276
parent7e19e417b5df765dabab8d6550ec0e9d897c573e (diff)
downloadcpython-0956b6d9c44f66cc152c6afe22a3793e5b157cfd.zip
cpython-0956b6d9c44f66cc152c6afe22a3793e5b157cfd.tar.gz
cpython-0956b6d9c44f66cc152c6afe22a3793e5b157cfd.tar.bz2
gh-94938: Fix test (GH-95396)
-rw-r--r--Lib/test/test_call.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py
index a2eec41..4c971bc 100644
--- a/Lib/test/test_call.py
+++ b/Lib/test/test_call.py
@@ -18,11 +18,6 @@ class BadStr(str):
# 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):