diff options
author | Guido van Rossum <guido@python.org> | 2002-04-07 06:36:23 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-04-07 06:36:23 +0000 |
commit | 8ca162f417c6a72faf02831457b4054a73087b78 (patch) | |
tree | 2d882f9a1fe596830f47f1132a5294633ba05f33 /Lib/dospath.py | |
parent | b8bff3f4a9e3be8b43a394d3795a46af2831fe5e (diff) | |
download | cpython-git-8ca162f417c6a72faf02831457b4054a73087b78.tar.gz |
Partial introduction of bools where appropriate.
Diffstat (limited to 'Lib/dospath.py')
-rw-r--r-- | Lib/dospath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dospath.py b/Lib/dospath.py index cfc0d864c3..b4aab497e1 100644 --- a/Lib/dospath.py +++ b/Lib/dospath.py @@ -141,7 +141,7 @@ def islink(path): """Is a path a symbolic link? This will always return false on systems where posix.lstat doesn't exist.""" - return 0 + return False def exists(path): |