(self, attrsD)
| 1377 | _end_copyright = _end_rights |
| 1378 | |
| 1379 | def _start_item(self, attrsD): |
| 1380 | self.entries.append(FeedParserDict()) |
| 1381 | self.push('item', 0) |
| 1382 | self.inentry = 1 |
| 1383 | self.guidislink = 0 |
| 1384 | self.title_depth = -1 |
| 1385 | id = self._getAttribute(attrsD, 'rdf:about') |
| 1386 | if id: |
| 1387 | context = self._getContext() |
| 1388 | context['id'] = id |
| 1389 | self._cdf_common(attrsD) |
| 1390 | _start_entry = _start_item |
| 1391 | |
| 1392 | def _end_item(self): |
nothing calls this directly
no test coverage detected