diff options
author | Skip Montanaro <skip@pobox.com> | 2003-06-19 18:10:37 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-06-19 18:10:37 (GMT) |
commit | f5ed9819b0528fac67a6dc1146e8cf96399e42cc (patch) | |
tree | 627584ea45574b4e338b06ff3b1bc85c2909be53 | |
parent | fc1efa371a805400c3a0cbad9690b7f04135162f (diff) | |
download | cpython-f5ed9819b0528fac67a6dc1146e8cf96399e42cc.zip cpython-f5ed9819b0528fac67a6dc1146e8cf96399e42cc.tar.gz cpython-f5ed9819b0528fac67a6dc1146e8cf96399e42cc.tar.bz2 |
Avoid using 'dir' as a variable name and use os.path.join() to create
paths.
-rw-r--r-- | Doc/lib/libstat.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex index acad5e0..74ccc37 100644 --- a/Doc/lib/libstat.tex +++ b/Doc/lib/libstat.tex @@ -129,12 +129,12 @@ Example: import os, sys from stat import * -def walktree(dir, callback): - '''recursively descend the directory rooted at dir, +def walktree(top, callback): + '''recursively descend the directory tree rooted at top, calling the callback function for each regular file''' - for f in os.listdir(dir): - pathname = '%s/%s' % (dir, f) + for f in os.listdir(top): + pathname = os.path.join(top, f) mode = os.stat(pathname)[ST_MODE] if S_ISDIR(mode): # It's a directory, recurse into it |