(
self,
exc_type: type[BaseException] | None,
exc_value: BaseException | None,
tb: TracebackType | None,
)
| 192 | return self |
| 193 | |
| 194 | def __exit__( |
| 195 | self, |
| 196 | exc_type: type[BaseException] | None, |
| 197 | exc_value: BaseException | None, |
| 198 | tb: TracebackType | None, |
| 199 | ) -> None: |
| 200 | self.close_intelligently() |
| 201 | |
| 202 | def __iter__(self) -> cabc.Iterator[t.AnyStr]: |
| 203 | self.open() |
nothing calls this directly
no test coverage detected