(self, attrsD)
| 1201 | self._sync_author_detail('publisher') |
| 1202 | |
| 1203 | def _start_contributor(self, attrsD): |
| 1204 | self.incontributor = 1 |
| 1205 | context = self._getContext() |
| 1206 | context.setdefault('contributors', []) |
| 1207 | context['contributors'].append(FeedParserDict()) |
| 1208 | self.push('contributor', 0) |
| 1209 | |
| 1210 | def _end_contributor(self): |
| 1211 | self.pop('contributor') |
nothing calls this directly
no test coverage detected