diff options
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r-- | Lib/macpath.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py index 0e32ab2..2eddf5a 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -100,6 +100,13 @@ def isdir(s): return S_ISDIR(st[ST_MODE]) +# Return true if the pathname refers to a symbolic link. +# (Always false on the Mac, until we understand Aliases.) + +def islink(s): + return 0 + + # Return true if the pathname refers to an existing regular file. def isfile(s): |