Commit ab870f8b authored by Guido van Rossum's avatar Guido van Rossum

islink() returns false, but there is no constant false! Return 0 instead.

parent c67578f0
......@@ -134,7 +134,7 @@ def commonprefix(m):
# This will always return false on systems where posix.lstat doesn't exist.
def islink(path):
return false
return 0
# Does a path exist?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment