(self)
| 1066 | self._attrs = attrs |
| 1067 | |
| 1068 | def test_expat_attrs_empty(self): |
| 1069 | parser = create_parser() |
| 1070 | gather = self.AttrGatherer() |
| 1071 | parser.setContentHandler(gather) |
| 1072 | |
| 1073 | parser.feed("<doc/>") |
| 1074 | parser.close() |
| 1075 | |
| 1076 | self.verify_empty_attrs(gather._attrs) |
| 1077 | |
| 1078 | def test_expat_attrs_wattr(self): |
| 1079 | parser = create_parser() |
nothing calls this directly
no test coverage detected