Receive a handle over a local connection.
(conn)
| 98 | conn.send(dh) |
| 99 | |
| 100 | def recv_handle(conn): |
| 101 | '''Receive a handle over a local connection.''' |
| 102 | return conn.recv().detach() |
| 103 | |
| 104 | class DupHandle(object): |
| 105 | '''Picklable wrapper for a handle.''' |