Message324890
This complements the current Path behavior that overrides division operators for path joining, in that it makes manually-constructed paths easier to form and arguably more readable.
Before:
p = Path("some", "relative", "path")
q = p.absolute() / "some" / "further" / "path"
After:
p = Path("some", "relative", "path")
q = abs(p) / "some" / "further" / "path" |
|
Date |
User |
Action |
Args |
2018-09-09 15:47:39 | brandtbucher | set | recipients:
+ brandtbucher |
2018-09-09 15:47:39 | brandtbucher | set | messageid: <1536508059.44.0.56676864532.issue34614@psf.upfronthosting.co.za> |
2018-09-09 15:47:39 | brandtbucher | link | issue34614 messages |
2018-09-09 15:47:39 | brandtbucher | create | |
|