(self, size: int = -1)
| 226 | return sys.__stdin__.encoding |
| 227 | |
| 228 | def read(self, size: int = -1) -> str: |
| 229 | raise OSError( |
| 230 | "pytest: reading from stdin while output is captured! Consider using `-s`." |
| 231 | ) |
| 232 | |
| 233 | readline = read |
| 234 |
no outgoing calls