(self, obj)
| 976 | obj = getattr(conn, attr) |
| 977 | setattr(self, attr, obj) |
| 978 | def send(self, obj): |
| 979 | s = self._dumps(obj) |
| 980 | self._conn.send_bytes(s) |
| 981 | def recv(self): |
| 982 | s = self._conn.recv_bytes() |
| 983 | return self._loads(s) |
nothing calls this directly
no test coverage detected