(self, obj)
| 1014 | obj = getattr(conn, attr) |
| 1015 | setattr(self, attr, obj) |
| 1016 | def send(self, obj): |
| 1017 | s = self._dumps(obj) |
| 1018 | self._conn.send_bytes(s) |
| 1019 | def recv(self): |
| 1020 | s = self._conn.recv_bytes() |
| 1021 | return self._loads(s) |
nothing calls this directly
no test coverage detected