Home | History | Annotate | Download | only in dom

Lines Matching refs:attname_or_tuple

521     def __getitem__(self, attname_or_tuple):
522 if isinstance(attname_or_tuple, tuple):
523 return self._attrsNS[attname_or_tuple]
525 return self._attrs[attname_or_tuple]
595 def __delitem__(self, attname_or_tuple):
596 node = self[attname_or_tuple]