From 803a8ea47e79ba551296d04d94ab6fe3846bbbee Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 9 Apr 2002 18:12:58 +0000 Subject: [PATCH] Update docstring to reflect code change to bool --- Lib/statcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/statcache.py b/Lib/statcache.py index 42e5e90db3d..47b79da11c6 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: