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 barneygale
Recipients barneygale
Date 2020-03-08.20:35:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583699719.8.0.302577003742.issue39906@roundup.psfhosted.org>
In-reply-to
Content
As of Python 3.3, `os.lstat()` and `os.lchmod()` are available as `os.stat(follow_symlinks=False)` and `os.chmod(follow_symlinks=False)`, but an equivalent change didn't make it into pathlib. I propose we add the  `follow_symlinks` argument to `Path.stat()` and `Path.chmod()` for consistency with `os` and because the new notation is arguable clearer for people who don't know many system calls off by heart :)
History
Date User Action Args
2020-03-08 20:35:19barneygalesetrecipients: + barneygale
2020-03-08 20:35:19barneygalesetmessageid: <1583699719.8.0.302577003742.issue39906@roundup.psfhosted.org>
2020-03-08 20:35:19barneygalelinkissue39906 messages
2020-03-08 20:35:19barneygalecreate