fix issue2707 - os.walk docstring example correctness typo.

This commit is contained in:
Gregory P. Smith 2008-05-06 07:05:18 +00:00
parent e3dcb01bfc
commit 8e4997390c
1 changed files with 2 additions and 1 deletions

View File

@ -267,8 +267,9 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
Example:
import os
from os.path import join, getsize
for root, dirs, files in walk('python/Lib/email'):
for root, dirs, files in os.walk('python/Lib/email'):
print root, "consumes",
print sum([getsize(join(root, name)) for name in files]),
print "bytes in", len(files), "non-directory files"