()
| 221 | s1.close() |
| 222 | |
| 223 | def get_server_io(): |
| 224 | os.close(pstdin) |
| 225 | os.close(pstdout) |
| 226 | return s2.makefile("rb", buffering=0), s2.makefile("wb", buffering=0) |
| 227 | else: |
| 228 | # In Windows CPython, BSD sockets are not supported as subprocess stdio |
| 229 | # and select.select() used in ssnet.py won't work on Windows pipes. |
no test coverage detected