diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 13:01:34 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 13:01:34 (GMT) |
commit | 5b987c2e68947732b673d6c8d6117011730d28f0 (patch) | |
tree | 09c808b4bd0c31d47f3785cd35e0f167340b0217 /Doc/library/shutil.rst | |
parent | 5a95977c71d19d6aed32b0a4721d5e9ef4888efe (diff) | |
parent | 014791f8484036b1c0040ea0de7a6a4c05f0aeed (diff) | |
download | cpython-5b987c2e68947732b673d6c8d6117011730d28f0.zip cpython-5b987c2e68947732b673d6c8d6117011730d28f0.tar.gz cpython-5b987c2e68947732b673d6c8d6117011730d28f0.tar.bz2 |
Issue #16993: shutil.which() now preserves the case of the path and extension
on Windows.
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r-- | Doc/library/shutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 34d8a63..bf65b6c 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -348,7 +348,7 @@ Directory and files operations directories. For example, on Windows:: >>> shutil.which("python") - 'c:\\python33\\python.exe' + 'C:\\Python33\\python.exe' .. versionadded:: 3.3 |