diff options
author | Barney Gale <barney.gale@gmail.com> | 2021-05-13 12:17:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 12:17:04 (GMT) |
commit | 366c69f3f63a2a1cce57dabe8f7c2e67d1df625d (patch) | |
tree | ae45ad487d6ededf0e55a3414530f994a62c4c88 | |
parent | d1560d2429dff8e7d397801786e966dd33bb1bd7 (diff) | |
download | cpython-366c69f3f63a2a1cce57dabe8f7c2e67d1df625d.zip cpython-366c69f3f63a2a1cce57dabe8f7c2e67d1df625d.tar.gz cpython-366c69f3f63a2a1cce57dabe8f7c2e67d1df625d.tar.bz2 |
bpo-39906: Document new follow_symlinks argument to pathlib.Path.stat() and chmod() in 3.10 whatsnew. (GH-26089)
-rw-r--r-- | Doc/whatsnew/3.10.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index f42b830..2d11efb 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1112,6 +1112,11 @@ supersedes :meth:`~pathlib.Path.link_to`. The new method has the same argument order as :meth:`~pathlib.Path.symlink_to`. (Contributed by Barney Gale in :issue:`39950`.) +:meth:`pathlib.Path.stat` and :meth:`~pathlib.Path.chmod` now accept a +*follow_symlinks* keyword-only argument for consistency with corresponding +functions in the :mod:`os` module. +(Contributed by Barney Gale in :issue:`39906`.) + platform -------- |