From: Benjamin Peterson Date: Mon, 23 Jun 2014 00:59:35 +0000 (-0700) Subject: clarify that islink only really works if python knows about symlinks (closes #13143) X-Git-Tag: v3.4.2rc1~336 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c;p=python clarify that islink only really works if python knows about symlinks (closes #13143) Patch from Yayoi Ukai. --- diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 6b3a3b6491..dc03f43422 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)