diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 13:00:27 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 13:00:27 (GMT) |
commit | 014791f8484036b1c0040ea0de7a6a4c05f0aeed (patch) | |
tree | 890753556a7ed46565f961075243517e7010b444 /Doc | |
parent | 85da624ebebb09aa5501861e2b25b7f16bfcb620 (diff) | |
download | cpython-014791f8484036b1c0040ea0de7a6a4c05f0aeed.zip cpython-014791f8484036b1c0040ea0de7a6a4c05f0aeed.tar.gz cpython-014791f8484036b1c0040ea0de7a6a4c05f0aeed.tar.bz2 |
Issue #16993: shutil.which() now preserves the case of the path and extension
on Windows.
Diffstat (limited to 'Doc')
-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 e962112..b5f39fe 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -335,7 +335,7 @@ Directory and files operations directories. For example, on Windows:: >>> shutil.which("python") - 'c:\\python33\\python.exe' + 'C:\\Python33\\python.exe' .. versionadded:: 3.3 |