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 eryksun, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-10-11.22:27:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570832840.2.0.910161330311.issue38453@roundup.psfhosted.org>
In-reply-to
Content
Because the abspath() call is deferred until the end of the resolution process, if the current working directory is not already a real path, it will not be fully resolved.

By passing it through abspath() at the start of the function, we ensure that the correct path is resolved.

This will help resolve some inconsistencies in the test suite when tests are launched with a short filename (FILENA~1) in the working directory (though some other fixes are probably needed to help here).
History
Date User Action Args
2019-10-11 22:27:20steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, eryksun
2019-10-11 22:27:20steve.dowersetmessageid: <1570832840.2.0.910161330311.issue38453@roundup.psfhosted.org>
2019-10-11 22:27:20steve.dowerlinkissue38453 messages
2019-10-11 22:27:19steve.dowercreate