Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ _xml_dumps
Function
_xml_dumps
Lib/multiprocessing/connection.py:1023–1024 ·
view source on GitHub ↗
(obj)
Source
from the content-addressed store, hash-verified
1021
return
self._loads(s)
1022
1023
def
_xml_dumps(obj):
1024
return
xmlrpclib.dumps((obj,), None, None, None, 1).encode(
'utf-8'
)
1025
1026
def
_xml_loads(s):
1027
(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
Used in the wild
real call sites across dependent graphs
searching dependent graphs…