Contains/equals

Steven D'Aprano steve at REMOVE-THIS-cybersource.com.au
Thu Aug 19 13:42:37 EDT 2010


On Thu, 19 Aug 2010 11:00:03 -0400, Alex Hall wrote:

>  def __eq__(self, obj):
>   if self.a==obj.a and self.b==obj.b: return True
>   return False


That would be the same as:

   def __eq__(self, obj):
     return self.a==obj.a and self.b==obj.b



-- 
Steven



More information about the Python-list mailing list