summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-23 08:44:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-23 08:44:21 (GMT)
commit8bea200b98356c931aed6ae3ddfe2e1f5400ab71 (patch)
tree0e887279d59d86c70d80c57b8f5be4dcb30bc563 /Misc
parent564e4d8dc9b918b5efaada336ab3bf595176d175 (diff)
downloadcpython-8bea200b98356c931aed6ae3ddfe2e1f5400ab71.zip
cpython-8bea200b98356c931aed6ae3ddfe2e1f5400ab71.tar.gz
cpython-8bea200b98356c931aed6ae3ddfe2e1f5400ab71.tar.bz2
Issue #16957: shutil.which() no longer searches a bare file name in the
current directory on Unix and no longer searches a relative file path with a directory part in PATH directories. Patch by Thomas Kluyver.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6218c12..5fdf5d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -150,6 +150,10 @@ Core and Builtins
Library
-------
+- Issue #16957: shutil.which() no longer searches a bare file name in the
+ current directory on Unix and no longer searches a relative file path with
+ a directory part in PATH directories. Patch by Thomas Kluyver.
+
- Issue #1159051: GzipFile now raises EOFError when reading a corrupted file
with truncated header or footer.