(self, other, *extra)
| 431 | return self.glob(f'**/{pattern}') |
| 432 | |
| 433 | def relative_to(self, other, *extra): |
| 434 | return posixpath.relpath(str(self), str(other.joinpath(*extra))) |
| 435 | |
| 436 | def __str__(self): |
| 437 | return posixpath.join(self.root.filename, self.at) |
no test coverage detected