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 steve.dower
Recipients lutecki, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-11-14.16:47:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573750077.95.0.178620317279.issue38793@roundup.psfhosted.org>
In-reply-to
Content
If "a" exists in the current directory, I get this (correct) result:

>>> import pathlib
>>> p = pathlib.Path(".", "a", "b", "c")
>>> p.resolve(strict=False)
WindowsPath('<my CWD>/a/b/c')

So there's an existence check of some kind that's not being handled properly.
History
Date User Action Args
2019-11-14 16:47:57steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, lutecki
2019-11-14 16:47:57steve.dowersetmessageid: <1573750077.95.0.178620317279.issue38793@roundup.psfhosted.org>
2019-11-14 16:47:57steve.dowerlinkissue38793 messages
2019-11-14 16:47:57steve.dowercreate