diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-22 08:32:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-22 08:32:16 (GMT) |
commit | 2ba095c6c578d76288f5697cc121ec1f80b4f6c7 (patch) | |
tree | cc9d212a306ae267dd60fa0da223ca19da3800f6 /Doc | |
parent | e461f7939ddc39e4acb0cc02ce439cacb48991c5 (diff) | |
parent | 80c88f4304a0da47610aee0968df30bce4ac5209 (diff) | |
download | cpython-2ba095c6c578d76288f5697cc121ec1f80b4f6c7.zip cpython-2ba095c6c578d76288f5697cc121ec1f80b4f6c7.tar.gz cpython-2ba095c6c578d76288f5697cc121ec1f80b4f6c7.tar.bz2 |
Fix shutil.which() test for issue #16993.
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 bf65b6c..e4f348c 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 |