diff options
author | Anthony Sottile <asottile@umich.edu> | 2017-12-14 16:57:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-12-14 16:57:55 (GMT) |
commit | 233ef249cc5c18d796fb581747179c5e062b4083 (patch) | |
tree | 5aacc95d9b6ae9869bc2f5ce44b4451493ec34e3 /Misc | |
parent | 02a0a19206da6902c3855a1fa09e60b208474cfa (diff) | |
download | cpython-233ef249cc5c18d796fb581747179c5e062b4083.zip cpython-233ef249cc5c18d796fb581747179c5e062b4083.tar.gz cpython-233ef249cc5c18d796fb581747179c5e062b4083.tar.bz2 |
bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (#4797)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-12-11-09-53-14.bpo-32277.jkKiVC.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-11-09-53-14.bpo-32277.jkKiVC.rst b/Misc/NEWS.d/next/Library/2017-12-11-09-53-14.bpo-32277.jkKiVC.rst new file mode 100644 index 0000000..765527a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-12-11-09-53-14.bpo-32277.jkKiVC.rst @@ -0,0 +1,3 @@ +Raise ``NotImplementedError`` instead of ``SystemError`` on platforms where +``chmod(..., follow_symlinks=False)`` is not supported. Patch by Anthony +Sottile. |