diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-14 05:24:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-14 05:24:13 (GMT) |
commit | ea14a0749a4f19b29236fc0acc4b556d9243bc6f (patch) | |
tree | a3a19b99bc9e0f529309103660d8d11c6fbe22ee /Doc | |
parent | 3222b25b2f55d3b3d1dab4547bf7b5adaa1d874f (diff) | |
download | cpython-ea14a0749a4f19b29236fc0acc4b556d9243bc6f.zip cpython-ea14a0749a4f19b29236fc0acc4b556d9243bc6f.tar.gz cpython-ea14a0749a4f19b29236fc0acc4b556d9243bc6f.tar.bz2 |
bpo-43757: Document os.path.realpath(strict=True) in 3.10 whatsnew. (GH-26090) (#26099)
(cherry picked from commit d1560d2429dff8e7d397801786e966dd33bb1bd7)
Co-authored-by: Barney Gale <barney.gale@gmail.com>
Co-authored-by: Barney Gale <barney.gale@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 8fd64f8..9394ee7 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1089,6 +1089,14 @@ Add :data:`~os.O_EVTONLY`, :data:`~os.O_FSYNC`, :data:`~os.O_SYMLINK` and :data:`~os.O_NOFOLLOW_ANY` for macOS. (Contributed by Dong-hee Na in :issue:`43106`.) +os.path +------- + +:func:`os.path.realpath` now accepts a *strict* keyword-only argument. When set +to ``True``, :exc:`OSError` is raised if a path doesn't exist or a symlink loop +is encountered. +(Contributed by Barney Gale in :issue:`43757`.) + pathlib ------- |