<div dir="ltr">Both Mapping and Set provide __eq__ and __ne__.  I was wondering why not have Sequence do the same?<div><br></div><div><div><div><br></div><div>class Sequence(Sized, Reversible, Container):</div><div><br></div><div>    def __eq__(self, other):</div><div>        if not isinstance(other, Sequence):</div><div>            return NotImplemented</div><div>        if len(self) != len(other):</div><div>            return False</div><div>        for a, b in self, other:</div><div>            if a != b:</div><div>                return False</div><div>        return True</div></div></div></div>