MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / items

Method items

tools/python-3.11.9-amd64/Lib/xml/etree/ElementTree.py:374–383  ·  view source on GitHub ↗

Get element attributes as a sequence. The attributes are returned in arbitrary order. Equivalent to attrib.items(). Return a list of (name, value) tuples.

(self)

Source from the content-addressed store, hash-verified

372 return self.attrib.keys()
373
374 def items(self):
375 """Get element attributes as a sequence.
376
377 The attributes are returned in arbitrary order. Equivalent to
378 attrib.items().
379
380 Return a list of (name, value) tuples.
381
382 """
383 return self.attrib.items()
384
385 def iter(self, tag=None):
386 """Create tree iterator.

Callers 7

iterfindFunction · 0.45
_namespacesFunction · 0.45
_serialize_xmlFunction · 0.45
_serialize_htmlFunction · 0.45
register_namespaceFunction · 0.45
__init__Method · 0.45
_startMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected