(self)
| 1506 | |
| 1507 | class LineComp: |
| 1508 | def __init__(self) -> None: |
| 1509 | self.stringio = StringIO() |
| 1510 | """:class:`python:io.StringIO()` instance used for input.""" |
| 1511 | |
| 1512 | def assert_contains_lines(self, lines2: Sequence[str]) -> None: |
| 1513 | """Assert that ``lines2`` are contained (linearly) in :attr:`stringio`'s value. |
nothing calls this directly
no outgoing calls
no test coverage detected