(self)
| 68 | """Extract the iframes from an html page.""" |
| 69 | |
| 70 | def __init__(self): |
| 71 | super().__init__() |
| 72 | self.iframes = [] |
| 73 | |
| 74 | def handle_starttag(self, tag, attrs): |
| 75 | if tag == "iframe": |
nothing calls this directly
no outgoing calls
no test coverage detected