(self, value)
| 216 | doesn't make any sense anyway.""" |
| 217 | |
| 218 | def write(self, value): |
| 219 | # XXX IPython expects sys.stdin.write to exist, there will no doubt be |
| 220 | # others, so here's a hack to keep them happy |
| 221 | raise OSError(errno.EBADF, "sys.stdin is read-only") |
| 222 | |
| 223 | def close(self) -> None: |
| 224 | # hack to make closing stdin a nop |
no outgoing calls