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: v2.7.8~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ecb4a1e49a0c969228df60cc6db5a2c24a248df1;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 3cc60cbbf9..ed3aaf4ec7 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)