diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-20 06:47:03 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-20 06:47:03 (GMT) |
commit | 694f2331c6959872e05f76c757799be0c4b00748 (patch) | |
tree | fa1a65224e887715fac2ef02a2fb1d13d4ad6d00 /Doc/faq | |
parent | 8bbcb584ddc74e6b2a58ee5bda8387776300d815 (diff) | |
download | cpython-694f2331c6959872e05f76c757799be0c4b00748.zip cpython-694f2331c6959872e05f76c757799be0c4b00748.tar.gz cpython-694f2331c6959872e05f76c757799be0c4b00748.tar.bz2 |
Fix a few quotes/backslashes.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/windows.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index 68a1b5c..84e3ff4 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -464,13 +464,13 @@ to console subprocesses which are designed to handle those signals. See Why does os.path.isdir() fail on NT shared directories? ------------------------------------------------------- -The solution appears to be always append the "\\" on the end of shared -drives. +In order to work correctly, :func:`os.path.isdir` requires a ``"\\"`` at the +end of the shared drive:: >>> import os - >>> os.path.isdir( '\\\\rorschach\\public') + >>> os.path.isdir('\\\\rorschach\\public') 0 - >>> os.path.isdir( '\\\\rorschach\\public\\') + >>> os.path.isdir('\\\\rorschach\\public\\') 1 It helps to think of share points as being like drive letters. Example:: @@ -480,7 +480,7 @@ It helps to think of share points as being like drive letters. Example:: k:\media is a directory k:\media\ is not a directory -The same rules apply if you substitute "k:" with "\\conky\foo":: +The same rules apply if you substitute ``"k:"`` with ``"\\conky\foo"``:: \\conky\foo is not a directory \\conky\foo\ is a directory |