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 eric.smith
Recipients Gerrit.Holl, eric.smith, pitrou, r.david.murray
Date 2014-06-18.17:36:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403113000.29.0.312412828404.issue21798@psf.upfronthosting.co.za>
In-reply-to
Content
I agree with David. And, it already works, but uses '/', not '+':

>>> b / "_name.dat"
PosixPath('/tmp/some_base/_name.dat')

-1 to using + to be the equivalent of:

>>> pathlib.Path(str(b) + "_name.dat")
PosixPath('/tmp/some_base_name.dat')
History
Date User Action Args
2014-06-18 17:36:40eric.smithsetrecipients: + eric.smith, pitrou, r.david.murray, Gerrit.Holl
2014-06-18 17:36:40eric.smithsetmessageid: <1403113000.29.0.312412828404.issue21798@psf.upfronthosting.co.za>
2014-06-18 17:36:40eric.smithlinkissue21798 messages
2014-06-18 17:36:40eric.smithcreate