(self)
| 1086 | self.verify_attrs_wattr(gather._attrs) |
| 1087 | |
| 1088 | def test_expat_nsattrs_empty(self): |
| 1089 | parser = create_parser(1) |
| 1090 | gather = self.AttrGatherer() |
| 1091 | parser.setContentHandler(gather) |
| 1092 | |
| 1093 | parser.feed("<doc/>") |
| 1094 | parser.close() |
| 1095 | |
| 1096 | self.verify_empty_nsattrs(gather._attrs) |
| 1097 | |
| 1098 | def test_expat_nsattrs_wattr(self): |
| 1099 | parser = create_parser(1) |
nothing calls this directly
no test coverage detected