Adds a certain piece of text to the tree as a NavigableString subclass.
(self, text, subclass)
| 1374 | self.currentData.append(data) |
| 1375 | |
| 1376 | def _toStringSubclass(self, text, subclass): |
| 1377 | """Adds a certain piece of text to the tree as a NavigableString |
| 1378 | subclass.""" |
| 1379 | self.endData() |
| 1380 | self.handle_data(text) |
| 1381 | self.endData(subclass) |
| 1382 | |
| 1383 | def handle_pi(self, text): |
| 1384 | """Handle a processing instruction as a ProcessingInstruction |
no test coverage detected