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 eryksun, rvisser
Date 2021-04-12.05:40:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618206006.96.0.200287455575.issue43810@roundup.psfhosted.org>
In-reply-to
Content
In POSIX, os.path.abspath(p) is normpath(join(os.getcwd(), p)). normpath() doesn't touch the filesystem, and it's documented that its "string manipulation may change the meaning of a path that contains symbolic links". You can use os.path.realpath() to resolve symbolic links in a path.
History
Date User Action Args
2021-04-12 05:40:06eryksunsetrecipients: + eryksun, rvisser
2021-04-12 05:40:06eryksunsetmessageid: <1618206006.96.0.200287455575.issue43810@roundup.psfhosted.org>
2021-04-12 05:40:06eryksunlinkissue43810 messages
2021-04-12 05:40:06eryksuncreate