commit | 8e4997390ccb92f889ac709c9a45e589472bdee2 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@mad-scientist.com> | Tue May 06 07:05:18 2008 +0000 |
committer | Gregory P. Smith <greg@mad-scientist.com> | Tue May 06 07:05:18 2008 +0000 |
tree | 43f10a462bf5f3bb57c1e2281d7cc54deda522bf | |
parent | e3dcb01bfc6bd14da865b0f28c3c9ad8181ab212 [diff] [blame] |
fix issue2707 - os.walk docstring example correctness typo.
diff --git a/Lib/os.py b/Lib/os.py index 890303f..6dc4bf3 100644 --- a/Lib/os.py +++ b/Lib/os.py
@@ -267,8 +267,9 @@ 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"