:type text: str :rtype: None
(self, text)
| 248 | self.pieces.append('&%s' % ref) |
| 249 | |
| 250 | def handle_data(self, text): |
| 251 | """ |
| 252 | :type text: str |
| 253 | :rtype: None |
| 254 | """ |
| 255 | |
| 256 | # called for each block of plain text, i.e. outside of any tag and |
| 257 | # not containing any character or entity references |
| 258 | # Store the original text verbatim. |
| 259 | self.pieces.append(text) |
| 260 | |
| 261 | def handle_comment(self, text): |
| 262 | """ |
no outgoing calls
no test coverage detected