Esempio n. 1
0
 def __eq__(self, other):
   ''' Check that this is equal to another group. '''
   if VirtualPanel.__eq__(self, other):
     if len(self) != len(other):
       return False
     return all(a == b for a, b in zip(self, other))
   else:
     return False