(self)
| 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) |
| 1022 | |
| 1023 | def _xml_dumps(obj): |
| 1024 | return xmlrpclib.dumps((obj,), None, None, None, 1).encode('utf-8') |
nothing calls this directly
no test coverage detected