(self, hint: int | None = -1)
| 236 | return self.readline() |
| 237 | |
| 238 | def readlines(self, hint: int | None = -1) -> list[str]: |
| 239 | raise OSError( |
| 240 | "pytest: reading from stdin while output is captured! Consider using `-s`." |
| 241 | ) |
| 242 | |
| 243 | def __iter__(self) -> Iterator[str]: |
| 244 | return self |
no outgoing calls