commit | 014791f8484036b1c0040ea0de7a6a4c05f0aeed | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 21 15:00:27 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 21 15:00:27 2013 +0200 |
tree | 890753556a7ed46565f961075243517e7010b444 | |
parent | 85da624ebebb09aa5501861e2b25b7f16bfcb620 [diff] [blame] |
Issue #16993: shutil.which() now preserves the case of the path and extension on Windows.
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index e962112..b5f39fe 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst
@@ -335,7 +335,7 @@ directories. For example, on Windows:: >>> shutil.which("python") - 'c:\\python33\\python.exe' + 'C:\\Python33\\python.exe' .. versionadded:: 3.3