From: Guido van Rossum Date: Thu, 8 Aug 1996 18:32:15 +0000 (+0000) Subject: Don't use 'false'; use '0'. X-Git-Tag: v1.4b2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0523d63a5ca872c46e66f27113e6346a8c602b30;p=thirdparty%2FPython%2Fcpython.git Don't use 'false'; use '0'. --- diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 1109d448117d..053092a2343f 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?