(htmlSource, baseURI, encoding, _type)
| 2565 | _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) |
| 2566 | |
| 2567 | def _resolveRelativeURIs(htmlSource, baseURI, encoding, _type): |
| 2568 | if not _SGML_AVAILABLE: |
| 2569 | return htmlSource |
| 2570 | |
| 2571 | p = _RelativeURIResolver(baseURI, encoding, _type) |
| 2572 | p.feed(htmlSource) |
| 2573 | return p.output() |
| 2574 | |
| 2575 | def _makeSafeAbsoluteURI(base, rel=None): |
| 2576 | # bail if ACCEPTABLE_URI_SCHEMES is empty |
no test coverage detected
searching dependent graphs…