diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-12-14 17:30:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-12-14 17:30:45 (GMT) |
commit | d1cb1067a82b11280204e36b695e786a5a3ca221 (patch) | |
tree | 8d05eb828598eead511e7dfea76784fd906b48ab /Misc | |
parent | 4f37105277e9c3d86c44ad385ad0f5e9b7768a85 (diff) | |
download | cpython-d1cb1067a82b11280204e36b695e786a5a3ca221.zip cpython-d1cb1067a82b11280204e36b695e786a5a3ca221.tar.gz cpython-d1cb1067a82b11280204e36b695e786a5a3ca221.tar.bz2 |
bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (GH-4797) (#4869)
(cherry picked from commit 233ef249cc5c18d796fb581747179c5e062b4083)
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. |