(dh, readable, writable)
| 1222 | dh = reduction.DupHandle(conn.fileno(), access) |
| 1223 | return rebuild_pipe_connection, (dh, conn.readable, conn.writable) |
| 1224 | def rebuild_pipe_connection(dh, readable, writable): |
| 1225 | handle = dh.detach() |
| 1226 | return PipeConnection(handle, readable, writable) |
| 1227 | reduction.register(PipeConnection, reduce_pipe_connection) |
| 1228 | |
| 1229 | else: |
nothing calls this directly
no test coverage detected
searching dependent graphs…