Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
985
def
_xml_dumps(obj):
986
return
xmlrpclib.dumps((obj,), None, None, None, 1).encode(
'utf-8'
)
987
988
def
_xml_loads(s):
989
(obj,), method = xmlrpclib.loads(s.decode(
'utf-8'
))
Callers
nothing calls this directly
Calls
2
encode
Method · 0.45
dumps
Method · 0.45
Tested by
no test coverage detected