diff options
author | Toke Høiland-Jørgensen <toke@toke.dk> | 2019-11-17 17:06:38 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-11-17 17:06:38 (GMT) |
commit | 111772fc27cfe388bc060f019d68a3e33481ec65 (patch) | |
tree | 6cca77de7fdb6a298552815a4a2816f8ceb643dc /Misc/NEWS.d/next/Library | |
parent | 645005e947c13c4a0706310a2a46112bf63cadc0 (diff) | |
download | cpython-111772fc27cfe388bc060f019d68a3e33481ec65.zip cpython-111772fc27cfe388bc060f019d68a3e33481ec65.tar.gz cpython-111772fc27cfe388bc060f019d68a3e33481ec65.tar.bz2 |
bpo-38811: Check for presence of os.link method in pathlib. (GH-17170)
Fix also the Path.symplink() method implementation for the case when
symlinks are not supported.
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-11-15-18-06-04.bpo-38811.AmdQ6M.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-11-15-18-06-04.bpo-38811.AmdQ6M.rst b/Misc/NEWS.d/next/Library/2019-11-15-18-06-04.bpo-38811.AmdQ6M.rst new file mode 100644 index 0000000..0e4a7f5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-11-15-18-06-04.bpo-38811.AmdQ6M.rst @@ -0,0 +1 @@ +Fix an unhandled exception in :mod:`pathlib` when :meth:`os.link` is missing. Patch by Toke Høiland-Jørgensen. |