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 | f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c (patch) | |
tree | 5992de9b28efb2698c24c636b7dd2d78fcda2b3f /Doc | |
parent | 9b29acd1fe79ab3a157a95121da3c060e1c96469 (diff) | |
download | cpython-f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c.zip cpython-f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c.tar.gz cpython-f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c.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 6b3a3b6..dc03f43 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -188,7 +188,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) |