diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-06-22 17:59:35 -0700 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-06-22 17:59:35 -0700 |
| commit | f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c (patch) | |
| tree | 5992de9b28efb2698c24c636b7dd2d78fcda2b3f /Doc/library/os.path.rst | |
| parent | 9b29acd1fe79ab3a157a95121da3c060e1c96469 (diff) | |
| download | cpython-git-f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c.tar.gz | |
clarify that islink only really works if python knows about symlinks (closes #13143)
Patch from Yayoi Ukai.
Diffstat (limited to 'Doc/library/os.path.rst')
| -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 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) |
