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

Method end

Lib/xmlrpc/client.py:669–680  ·  view source on GitHub ↗
(self, tag)

Source from the content-addressed store, hash-verified

667 self._data.append(text)
668
669 def end(self, tag):
670 # call the appropriate end tag handler
671 try:
672 f = self.dispatch[tag]
673 except KeyError:
674 if ':' not in tag:
675 return # unknown tag ?
676 try:
677 f = self.dispatch[tag.split(':')[-1]]
678 except KeyError:
679 return # unknown tag ?
680 return f(self, "".join(self._data))
681
682 #
683 # accelerator support

Callers 15

_strptimeFunction · 0.45
_getargspecFunction · 0.45
parseMethod · 0.45
_proc_paxMethod · 0.45
ehloMethod · 0.45
parse_declarationMethod · 0.45
parse_marked_sectionMethod · 0.45
parse_commentMethod · 0.45

Calls 3

fFunction · 0.50
splitMethod · 0.45
joinMethod · 0.45

Tested by 2

parseMethod · 0.36
test_progMethod · 0.36