Kaydet (Commit) 7c4f96f4 authored tarafından Jeremy Hylton's avatar Jeremy Hylton

Deviant1 didn't work as advertised

üst 37b1a26c
...@@ -140,13 +140,13 @@ class Deviant1: ...@@ -140,13 +140,13 @@ class Deviant1:
works when the list is modified during the check. works when the list is modified during the check.
""" """
aLongList = range(15) aList = range(15)
aShortList = range(5)
aList = aLongList
def __cmp__(self, other): def __cmp__(self, other):
if other == 12: if other == 12:
self.aList = self.aShortList self.aList.remove(12)
self.aList.remove(13)
self.aList.remove(14)
return 1 return 1
check(Deviant1() not in Deviant1.aList, "Deviant1 failed") check(Deviant1() not in Deviant1.aList, "Deviant1 failed")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment