Message367047
Note that the implementation of relpath is pure and thus assumes it's working with existing, resolved paths (i.e. "the filesystem is not accessed to confirm the existence or nature of path or start"). For example:
>>> os.path.relpath('/some/thing', '/symlink')
'../some/thing'
If "symlink" targets "/spam/eggs/foo", then the resolved path would be "/spam/eggs/some/thing" instead of "/some/thing". Maybe the relative_to method should default to a `strict` mode that raises ValueError on ambiguous cases that depend on the "existence or nature" of the paths. I think the current implementation is strict. |
|
Date |
User |
Action |
Args |
2020-04-22 19:50:21 | eryksun | set | recipients:
+ eryksun, pitrou, d.ragusa, bowiechen |
2020-04-22 19:50:21 | eryksun | set | messageid: <1587585021.43.0.391857493828.issue40358@roundup.psfhosted.org> |
2020-04-22 19:50:21 | eryksun | link | issue40358 messages |
2020-04-22 19:50:21 | eryksun | create | |
|