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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0523d63a5ca872c46e66f27113e6346a8c602b30;p=python Don't use 'false'; use '0'. --- diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 1109d44811..053092a234 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?