Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ handle_end_element
Method
handle_end_element
Lib/plistlib.py:203–206 ·
view source on GitHub ↗
(self, element)
Source
from the content-addressed store, hash-verified
201
handler(attrs)
202
203
def
handle_end_element(self, element):
204
handler = getattr(self,
"end_"
+ element, None)
205
if
handler is not None:
206
handler()
207
208
def
handle_data(self, data):
209
self.data.append(data)
Callers
nothing calls this directly
Calls
1
handler
Function · 0.85
Tested by
no test coverage detected