Return a new path pointer formed by starting at the path identified by this pointer, and then following the relative path given by ``fileid``. The path components of ``fileid`` should be separated by forward slashes, regardless of the underlying file system'
(self, fileid)
| 344 | |
| 345 | @abstractmethod |
| 346 | def join(self, fileid): |
| 347 | """ |
| 348 | Return a new path pointer formed by starting at the path |
| 349 | identified by this pointer, and then following the relative |
| 350 | path given by ``fileid``. The path components of ``fileid`` |
| 351 | should be separated by forward slashes, regardless of |
| 352 | the underlying file system's path separator character. |
| 353 | """ |
| 354 | |
| 355 | |
| 356 | class FileSystemPathPointer(PathPointer, str): |
no outgoing calls