In message <[email protected]>, Alex Hall wrote:
> def __eq__(self, obj): > if self.a==obj.a and self.b==obj.b: return True > return False Is there a “Useless Use Of ...” award category for these “if <boolean> then return True; else return False” constructs? -- http://mail.python.org/mailman/listinfo/python-list
