(dh, readable, writable)
| 1176 | dh = reduction.DupHandle(conn.fileno(), access) |
| 1177 | return rebuild_pipe_connection, (dh, conn.readable, conn.writable) |
| 1178 | def rebuild_pipe_connection(dh, readable, writable): |
| 1179 | handle = dh.detach() |
| 1180 | return PipeConnection(handle, readable, writable) |
| 1181 | reduction.register(PipeConnection, reduce_pipe_connection) |
| 1182 | |
| 1183 | else: |
nothing calls this directly
no test coverage detected