27 self.title = title |
27 self.title = title |
28 self.broken = broken |
28 self.broken = broken |
29 |
29 |
30 def __eq__(self, other): |
30 def __eq__(self, other): |
31 """ |
31 """ |
32 Public method implementing the equality operator. |
32 Special method implementing the equality operator. |
33 |
33 |
34 @param other reference to the other page object (Page) |
34 @param other reference to the other page object (Page) |
35 @return flag indicating equality (boolean) |
35 @return flag indicating equality (boolean) |
36 """ |
36 """ |
37 return self.title == other.title and \ |
37 return self.title == other.title and \ |