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