diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-30 06:39:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-30 06:39:54 (GMT) |
commit | bd6452a3a83ace4d1dfe663af812483fb60ebcd0 (patch) | |
tree | 638753e42d557cebf52bfac827f241ec97579f95 | |
parent | a459ee9543243299386f594fc10bb0b206ec5530 (diff) | |
download | cpython-bd6452a3a83ace4d1dfe663af812483fb60ebcd0.zip cpython-bd6452a3a83ace4d1dfe663af812483fb60ebcd0.tar.gz cpython-bd6452a3a83ace4d1dfe663af812483fb60ebcd0.tar.bz2 |
gh-94938: Fix test (GH-95396)
(cherry picked from commit 0956b6d9c44f66cc152c6afe22a3793e5b157cfd)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-rw-r--r-- | Lib/test/test_call.py | 5 |
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): |