diff options
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 1f355ec..649e424 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -249,7 +249,6 @@ def islink(path): # Does a path exist? -# This is false for dangling symbolic links. def exists(path): """Test whether a path exists""" @@ -259,6 +258,8 @@ def exists(path): return False return True +lexists = exists + # Is a path a dos directory? # This follows symbolic links, so both islink() and isdir() can be true |