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

Method handle_begin_element

Lib/plistlib.py:197–201  ·  view source on GitHub ↗
(self, element, attrs)

Source from the content-addressed store, hash-verified

195 raise InvalidFileException("XML entity declarations are not supported in plist files")
196
197 def handle_begin_element(self, element, attrs):
198 self.data = []
199 handler = getattr(self, "begin_" + element, None)
200 if handler is not None:
201 handler(attrs)
202
203 def handle_end_element(self, element):
204 handler = getattr(self, "end_" + element, None)

Callers

nothing calls this directly

Calls 1

handlerFunction · 0.85

Tested by

no test coverage detected