Parse a document fragment from a file object, returning the fragment node.
(self, file)
| 611 | self.fragment = None |
| 612 | |
| 613 | def parseFile(self, file): |
| 614 | """Parse a document fragment from a file object, returning the |
| 615 | fragment node.""" |
| 616 | return self.parseString(file.read()) |
| 617 | |
| 618 | def parseString(self, string): |
| 619 | """Parse a document fragment from a string, returning the |
no test coverage detected