Home
last modified time | relevance | path

Searched refs:attname_or_tuple (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Lib/xml/dom/
Dminidom.py518 def __getitem__(self, attname_or_tuple): argument
519 if isinstance(attname_or_tuple, tuple):
520 return self._attrsNS[attname_or_tuple]
522 return self._attrs[attname_or_tuple]
592 def __delitem__(self, attname_or_tuple): argument
593 node = self[attname_or_tuple]