(self, *descendants)
| 96 | return False |
| 97 | |
| 98 | def joinpath(self, *descendants): |
| 99 | try: |
| 100 | return super().joinpath(*descendants) |
| 101 | except abc.TraversalError: |
| 102 | # One of the paths did not resolve (a directory does not exist). |
| 103 | # Just return something that will not exist. |
| 104 | return self._paths[0].joinpath(*descendants) |
| 105 | |
| 106 | @classmethod |
| 107 | def _follow(cls, children): |