(self, selector=None)
| 427 | return self._copy(results, parent=self) |
| 428 | |
| 429 | def parent(self, selector=None): |
| 430 | return self._filter_only( |
| 431 | selector, |
| 432 | [e.getparent() for e in self if e.getparent() is not None], |
| 433 | unique=True) |
| 434 | |
| 435 | def prev(self, selector=None): |
| 436 | return self._filter_only( |
nothing calls this directly
no test coverage detected