summaryrefslogtreecommitdiff
path: root/Lib/test/test_class.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_class.py')
-rw-r--r--Lib/test/test_class.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_class.py b/Lib/test/test_class.py
index d872357ce0..a0b3300c84 100644
--- a/Lib/test/test_class.py
+++ b/Lib/test/test_class.py
@@ -49,7 +49,6 @@ testmeths = [
]
# These need to return something other than None
-# "coerce",
# "hash",
# "str",
# "repr",
@@ -65,10 +64,6 @@ testmeths = [
# "delattr",
class AllTests:
- def __coerce__(self, *args):
- print "__coerce__:", args
- return (self,) + args
-
def __hash__(self, *args):
print "__hash__:", args
return hash(id(self))