(self)
| 446 | del self.childNodes[:] |
| 447 | |
| 448 | def _get_isId(self): |
| 449 | if self._is_id: |
| 450 | return True |
| 451 | doc = self.ownerDocument |
| 452 | elem = self.ownerElement |
| 453 | if doc is None or elem is None: |
| 454 | return False |
| 455 | |
| 456 | info = doc._get_elem_info(elem) |
| 457 | if info is None: |
| 458 | return False |
| 459 | if self.namespaceURI: |
| 460 | return info.isIdNS(self.namespaceURI, self.localName) |
| 461 | else: |
| 462 | return info.isId(self.nodeName) |
| 463 | |
| 464 | def _get_schemaType(self): |
| 465 | doc = self.ownerDocument |
nothing calls this directly
no test coverage detected