Combine this path with one or several arguments, and return a new path representing either a subpath (if all arguments are relative paths) or a totally different path (if one of the arguments is anchored).
(self, *args)
| 755 | return self._pparts |
| 756 | |
| 757 | def joinpath(self, *args): |
| 758 | """Combine this path with one or several arguments, and return a |
| 759 | new path representing either a subpath (if all arguments are relative |
| 760 | paths) or a totally different path (if one of the arguments is |
| 761 | anchored). |
| 762 | """ |
| 763 | return self._make_child(args) |
| 764 | |
| 765 | def __truediv__(self, key): |
| 766 | try: |
nothing calls this directly
no test coverage detected