MCPcopy Index your code
hub / github.com/python/cpython / dump_unicode

Method dump_unicode

Lib/xmlrpc/client.py:541–544  ·  view source on GitHub ↗
(self, value, write, escape=escape)

Source from the content-addressed store, hash-verified

539 dispatch[float] = dump_double
540
541 def dump_unicode(self, value, write, escape=escape):
542 write("<value><string>")
543 write(escape(value))
544 write("</string></value>\n")
545 dispatch[str] = dump_unicode
546
547 def dump_bytes(self, value, write):

Callers

nothing calls this directly

Calls 2

escapeFunction · 0.70
writeFunction · 0.50

Tested by

no test coverage detected