diff options
author | Brian Curtin <brian@python.org> | 2012-06-22 21:00:30 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-06-22 21:00:30 (GMT) |
commit | c57a34577c49f5a41b89b7ce673627884a53ab3b (patch) | |
tree | 7e1ea35684456670106f3753a8d01c26d1394bb7 /Misc | |
parent | ebd1b1dcb7a944ace00fd4f6565b5a2627eab2ce (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |