diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-06-23 00:59:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-06-23 00:59:35 (GMT) |
commit | ecb4a1e49a0c969228df60cc6db5a2c24a248df1 (patch) | |
tree | 3c99b834f1187a38d57a40a4537415eeda2b2846 /Doc | |
parent | ed6820d395b08c847f91ffc7a0a2ebffbe3096bb (diff) | |
download | cpython-ecb4a1e49a0c969228df60cc6db5a2c24a248df1.zip cpython-ecb4a1e49a0c969228df60cc6db5a2c24a248df1.tar.gz cpython-ecb4a1e49a0c969228df60cc6db5a2c24a248df1.tar.bz2 |
clarify that islink only really works if python knows about symlinks (closes #13143)
Patch from Yayoi Ukai.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 3cc60cb..ed3aaf4 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -185,7 +185,7 @@ the :mod:`glob` module.) .. function:: islink(path) Return ``True`` if *path* refers to a directory entry that is a symbolic link. - Always ``False`` if symbolic links are not supported. + Always ``False`` if symbolic links are not supported by the python runtime. .. function:: ismount(path) |