Kaydet (Commit) bfa9f13e authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst 79b2038a
...@@ -134,7 +134,7 @@ def commonprefix(m): ...@@ -134,7 +134,7 @@ def commonprefix(m):
# This will always return false on systems where posix.lstat doesn't exist. # This will always return false on systems where posix.lstat doesn't exist.
def islink(path): def islink(path):
return false return 0
# Does a path exist? # 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