Searched refs:child_parts (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Lib/ |
D | pathlib.py | 370 child_parts = pattern_parts[1:] 379 return cls(pat, child_parts, flavour) 389 def __init__(self, child_parts, flavour): argument 390 self.child_parts = child_parts 391 if child_parts: 392 self.successor = _make_selector(child_parts, flavour) 418 def __init__(self, name, child_parts, flavour): argument 420 _Selector.__init__(self, child_parts, flavour) 434 def __init__(self, pat, child_parts, flavour): argument 436 _Selector.__init__(self, child_parts, flavour) [all …]
|