From: Neal Norwitz Date: Tue, 9 Apr 2002 18:12:58 +0000 (+0000) Subject: Update docstring to reflect code change to bool X-Git-Tag: v2.3c1~6078 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=803a8ea47e79ba551296d04d94ab6fe3846bbbee;p=python Update docstring to reflect code change to bool --- diff --git a/Lib/statcache.py b/Lib/statcache.py index 42e5e90db3..47b79da11c 100644 --- a/Lib/statcache.py +++ b/Lib/statcache.py @@ -69,7 +69,7 @@ def forget_except_prefix(prefix): forget(path) def isdir(path): - """Return 1 if directory, else 0.""" + """Return True if directory, else False.""" try: st = stat(path) except _os.error: