From ecb4a1e49a0c969228df60cc6db5a2c24a248df1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 22 Jun 2014 17:59:35 -0700 Subject: [PATCH] clarify that islink only really works if python knows about symlinks (closes #13143) Patch from Yayoi Ukai. --- Doc/library/os.path.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.50.1