(self, other: object)
| 38 | self.lines = deindent(src.split("\n")) |
| 39 | |
| 40 | def __eq__(self, other: object) -> bool: |
| 41 | if not isinstance(other, Source): |
| 42 | return NotImplemented |
| 43 | return self.lines == other.lines |
| 44 | |
| 45 | # Ignore type because of https://github.com/python/mypy/issues/4266. |
| 46 | __hash__ = None # type: ignore |
nothing calls this directly
no outgoing calls
no test coverage detected