in share/multiline.py [0:0]
def __eq__(self, other: object) -> bool:
if not isinstance(other, CountMultiline):
return False
return (
self._count_lines == other._count_lines
and self._max_bytes == other._max_bytes
and self._max_lines == self._max_lines
and self._skip_newline == self._skip_newline
)