MCPcopy Index your code
hub / github.com/cool-RR/PySnooper / __init__

Method __init__

tests/mini_toolbox/pathlib.py:633–640  ·  view source on GitHub ↗
(self, child_parts)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_make_selectorFunction · 0.85

Tested by

no test coverage detected