(self)
| 1076 | self.verify_empty_attrs(gather._attrs) |
| 1077 | |
| 1078 | def test_expat_attrs_wattr(self): |
| 1079 | parser = create_parser() |
| 1080 | gather = self.AttrGatherer() |
| 1081 | parser.setContentHandler(gather) |
| 1082 | |
| 1083 | parser.feed("<doc attr='val'/>") |
| 1084 | parser.close() |
| 1085 | |
| 1086 | self.verify_attrs_wattr(gather._attrs) |
| 1087 | |
| 1088 | def test_expat_nsattrs_empty(self): |
| 1089 | parser = create_parser(1) |
nothing calls this directly
no test coverage detected