(self, child_parts)
| 631 | of a given path.""" |
| 632 | |
| 633 | def __init__(self, child_parts): |
| 634 | self.child_parts = child_parts |
| 635 | if child_parts: |
| 636 | self.successor = _make_selector(child_parts) |
| 637 | self.dironly = True |
| 638 | else: |
| 639 | self.successor = _TerminatingSelector() |
| 640 | self.dironly = False |
| 641 | |
| 642 | def select_from(self, parent_path): |
| 643 | """Iterate over all child paths of `parent_path` matched by this |
nothing calls this directly
no test coverage detected