summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-08 18:32:15 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-08 18:32:15 (GMT)
commit0523d63a5ca872c46e66f27113e6346a8c602b30 (patch)
tree9962090651227457c57831f076e737952c70e476 /Lib/ntpath.py
parent5468a7b76bedec239ea94a3d0908008dfbafcf8b (diff)
downloadcpython-0523d63a5ca872c46e66f27113e6346a8c602b30.zip
cpython-0523d63a5ca872c46e66f27113e6346a8c602b30.tar.gz
cpython-0523d63a5ca872c46e66f27113e6346a8c602b30.tar.bz2
Don't use 'false'; use '0'.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 1109d44..053092a 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -129,7 +129,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?