(self, attrsD)
| 1212 | self.incontributor = 0 |
| 1213 | |
| 1214 | def _start_dc_contributor(self, attrsD): |
| 1215 | self.incontributor = 1 |
| 1216 | context = self._getContext() |
| 1217 | context.setdefault('contributors', []) |
| 1218 | context['contributors'].append(FeedParserDict()) |
| 1219 | self.push('name', 0) |
| 1220 | |
| 1221 | def _end_dc_contributor(self): |
| 1222 | self._end_name() |
nothing calls this directly
no test coverage detected