(self, data: str)
| 255 | self.cleandoc.append(text) |
| 256 | |
| 257 | def handle_data(self, data: str): |
| 258 | if self.intail and '\n' in data: |
| 259 | self.intail = False |
| 260 | if self.inraw: |
| 261 | self._cache.append(data) |
| 262 | else: |
| 263 | self.cleandoc.append(data) |
| 264 | |
| 265 | def handle_empty_tag(self, data: str, is_block: bool): |
| 266 | """ Handle empty tags (`<data>`). """ |
no outgoing calls
no test coverage detected