(self)
| 1227 | _start_itunes_name = _start_name |
| 1228 | |
| 1229 | def _end_name(self): |
| 1230 | value = self.pop('name') |
| 1231 | if self.inpublisher: |
| 1232 | self._save_author('name', value, 'publisher') |
| 1233 | elif self.inauthor: |
| 1234 | self._save_author('name', value) |
| 1235 | elif self.incontributor: |
| 1236 | self._save_contributor('name', value) |
| 1237 | elif self.intextinput: |
| 1238 | context = self._getContext() |
| 1239 | context['name'] = value |
| 1240 | _end_itunes_name = _end_name |
| 1241 | |
| 1242 | def _start_width(self, attrsD): |
no test coverage detected