diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-23 08:44:21 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-23 08:44:21 (GMT) |
commit | 8bea200b98356c931aed6ae3ddfe2e1f5400ab71 (patch) | |
tree | 0e887279d59d86c70d80c57b8f5be4dcb30bc563 /Misc | |
parent | 564e4d8dc9b918b5efaada336ab3bf595176d175 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |