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 eryksun
Recipients Jim Fasarakis-Hilliard, brett.cannon, docs@python, eryksun, pitrou
Date 2017-03-11.05:17:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1489209434.4.0.690311145907.issue29688@psf.upfronthosting.co.za>
In-reply-to
Content
resolve() can't replace absolute(). They serve different purposes. Sometimes one wants an absolute path, but without resolving symbolic links. 

absolute() processes a path as a string, which will continue to be true if it's updated to call nt._getfullpathname (GetFullPathName) on Windows. OTOH, resolve() can outright fail on Windows. I can write up a list of examples (I can think of 5 or 6 unhandled error codes), but it's not directly relevant to this issue.
History
Date User Action Args
2017-03-11 05:17:14eryksunsetrecipients: + eryksun, brett.cannon, pitrou, docs@python, Jim Fasarakis-Hilliard
2017-03-11 05:17:14eryksunsetmessageid: <1489209434.4.0.690311145907.issue29688@psf.upfronthosting.co.za>
2017-03-11 05:17:14eryksunlinkissue29688 messages
2017-03-11 05:17:12eryksuncreate