(self)
| 1284 | _start_itunes_email = _start_email |
| 1285 | |
| 1286 | def _end_email(self): |
| 1287 | value = self.pop('email') |
| 1288 | if self.inpublisher: |
| 1289 | self._save_author('email', value, 'publisher') |
| 1290 | elif self.inauthor: |
| 1291 | self._save_author('email', value) |
| 1292 | elif self.incontributor: |
| 1293 | self._save_contributor('email', value) |
| 1294 | _end_itunes_email = _end_email |
| 1295 | |
| 1296 | def _getContext(self): |
nothing calls this directly
no test coverage detected