(self, feature, version)
| 1437 | ] |
| 1438 | |
| 1439 | def hasFeature(self, feature, version): |
| 1440 | if version == "": |
| 1441 | version = None |
| 1442 | return (feature.lower(), version) in self._features |
| 1443 | |
| 1444 | def createDocument(self, namespaceURI, qualifiedName, doctype): |
| 1445 | if doctype and doctype.parentNode is not None: |
no test coverage detected