(fd)
| 80 | |
| 81 | |
| 82 | def _format_pipe(fd): |
| 83 | if fd == subprocess.PIPE: |
| 84 | return '<pipe>' |
| 85 | elif fd == subprocess.STDOUT: |
| 86 | return '<stdout>' |
| 87 | else: |
| 88 | return repr(fd) |
| 89 | |
| 90 | |
| 91 | def _set_reuseport(sock): |
no outgoing calls
no test coverage detected
searching dependent graphs…