This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brandtbucher
Recipients brandtbucher
Date 2018-09-09.15:47:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536508059.44.0.56676864532.issue34614@psf.upfronthosting.co.za>
In-reply-to
Content
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"
History
Date User Action Args
2018-09-09 15:47:39brandtbuchersetrecipients: + brandtbucher
2018-09-09 15:47:39brandtbuchersetmessageid: <1536508059.44.0.56676864532.issue34614@psf.upfronthosting.co.za>
2018-09-09 15:47:39brandtbucherlinkissue34614 messages
2018-09-09 15:47:39brandtbuchercreate