Update docstring to reflect code change to bool
diff --git a/Lib/statcache.py b/Lib/statcache.py
index 42e5e90..47b79da 100644
--- a/Lib/statcache.py
+++ b/Lib/statcache.py
@@ -69,7 +69,7 @@
             forget(path)
 
 def isdir(path):
-    """Return 1 if directory, else 0."""
+    """Return True if directory, else False."""
     try:
         st = stat(path)
     except _os.error: