314
315
316
317
318
319
320
321
322
323
324
325
326
327
|
if this == [None, None] and that == [None, None]:
result = True
break
self.clear()
other.clear()
return(result)
def end(self):
'''Returns last known point.'''
end = None
self.rewind()
while True:
this = self.pop()
if this == [None, None]:
|
>
>
>
|
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
if this == [None, None] and that == [None, None]:
result = True
break
self.clear()
other.clear()
return(result)
def __ne__(self, other):
return(not self == other)
def end(self):
'''Returns last known point.'''
end = None
self.rewind()
while True:
this = self.pop()
if this == [None, None]:
|