(self)
| 93 | return TextNode(Comment(data), self.soup) |
| 94 | |
| 95 | def fragmentClass(self): |
| 96 | self.soup = BeautifulSoup("") |
| 97 | self.soup.name = "[document_fragment]" |
| 98 | return Element(self.soup, self.soup, None) |
| 99 | |
| 100 | def appendChild(self, node): |
| 101 | # XXX This code is not covered by the BS4 tests. |
nothing calls this directly
no test coverage detected