summaryrefslogtreecommitdiffstats
path: root/Lib/statcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/statcache.py')
-rw-r--r--Lib/statcache.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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: