From 0523d63a5ca872c46e66f27113e6346a8c602b30 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 8 Aug 1996 18:32:15 +0000 Subject: [PATCH] Don't use 'false'; use '0'. --- Lib/ntpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- 2.50.1