Construct a new path object from any number of path-like objects. Subclasses may override this method to customize how new path objects are created from methods like `iterdir()`.
(self, *pathsegments)
| 157 | self._raw_paths = paths |
| 158 | |
| 159 | def with_segments(self, *pathsegments): |
| 160 | """Construct a new path object from any number of path-like objects. |
| 161 | Subclasses may override this method to customize how new path objects |
| 162 | are created from methods like `iterdir()`. |
| 163 | """ |
| 164 | return type(self)(*pathsegments) |
| 165 | |
| 166 | def joinpath(self, *pathsegments): |
| 167 | """Combine this path with one or several arguments, and return a |
no outgoing calls
no test coverage detected