(self)
| 724 | return self.tagName |
| 725 | |
| 726 | def unlink(self): |
| 727 | if self._attrs is not None: |
| 728 | for attr in list(self._attrs.values()): |
| 729 | attr.unlink() |
| 730 | self._attrs = None |
| 731 | self._attrsNS = None |
| 732 | Node.unlink(self) |
| 733 | |
| 734 | def getAttribute(self, attname): |
| 735 | """Returns the value of the specified attribute. |