(self)
| 67 | return iter(self.lines) |
| 68 | |
| 69 | def __len__(self) -> int: |
| 70 | return len(self.lines) |
| 71 | |
| 72 | def strip(self) -> "Source": |
| 73 | """Return new Source object with trailing and leading blank lines removed.""" |
nothing calls this directly
no outgoing calls
no test coverage detected