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-13.23:21:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618356080.35.0.597835910861.issue43810@roundup.psfhosted.org>
In-reply-to
Content
If realpath() resolves too much, you'll have to resolve manually via os.path.islink() and os.readlink(). If you need strict resolution, use pathlib.Path.resolve(). In strict mode it raises FileNotFoundError if a path component doesn't exist. Also, even in non-strict mode, it raises RuntimeError for a symlink loop.
History
Date User Action Args
2021-04-13 23:21:20eryksunsetrecipients: + eryksun, rvisser
2021-04-13 23:21:20eryksunsetmessageid: <1618356080.35.0.597835910861.issue43810@roundup.psfhosted.org>
2021-04-13 23:21:20eryksunlinkissue43810 messages
2021-04-13 23:21:20eryksuncreate