(self, selector=None)
| 438 | [e.getprevious() for e in self if e.getprevious() is not None]) |
| 439 | |
| 440 | def next(self, selector=None): |
| 441 | return self._filter_only( |
| 442 | selector, |
| 443 | [e.getnext() for e in self if e.getnext() is not None]) |
| 444 | |
| 445 | def _traverse(self, method): |
| 446 | for e in self: |
nothing calls this directly
no test coverage detected