:type text: str :rtype: None
(self, text)
| 259 | self.pieces.append(text) |
| 260 | |
| 261 | def handle_comment(self, text): |
| 262 | """ |
| 263 | :type text: str |
| 264 | :rtype: None |
| 265 | """ |
| 266 | |
| 267 | # Called for HTML comments, e.g. <!-- insert Javascript code here --> |
| 268 | # Reconstruct the original comment. |
| 269 | self.pieces.append('<!--%s-->' % text) |
| 270 | |
| 271 | def handle_pi(self, text): |
| 272 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected