MCPcopy Index your code
hub / github.com/RustPython/RustPython / _xml_dumps

Function _xml_dumps

Lib/multiprocessing/connection.py:985–986  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

983 return self._loads(s)
984
985def _xml_dumps(obj):
986 return xmlrpclib.dumps((obj,), None, None, None, 1).encode('utf-8')
987
988def _xml_loads(s):
989 (obj,), method = xmlrpclib.loads(s.decode('utf-8'))

Callers

nothing calls this directly

Calls 2

encodeMethod · 0.45
dumpsMethod · 0.45

Tested by

no test coverage detected