summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian@python.org>2012-06-22 21:00:30 (GMT)
committerBrian Curtin <brian@python.org>2012-06-22 21:00:30 (GMT)
commitc57a34577c49f5a41b89b7ce673627884a53ab3b (patch)
tree7e1ea35684456670106f3753a8d01c26d1394bb7 /Misc
parentebd1b1dcb7a944ace00fd4f6565b5a2627eab2ce (diff)
downloadcpython-c57a34577c49f5a41b89b7ce673627884a53ab3b.zip
cpython-c57a34577c49f5a41b89b7ce673627884a53ab3b.tar.gz
cpython-c57a34577c49f5a41b89b7ce673627884a53ab3b.tar.bz2
Fix #444582. Add shutil.which function for finding programs on the system path.
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 815df0d..adcbc72 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #444582: Add shutil.which, for finding programs on the system path.
+ Original patch by Erik Demaine, with later iterations by Jan Killian
+ and Brian Curtin.
+
- Issue #14837: SSL errors now have ``library`` and ``reason`` attributes
describing precisely what happened and in which OpenSSL submodule. The
str() of a SSLError is also enhanced accordingly.