diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-09 20:00:17 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-09 20:00:17 (GMT) |
commit | 4e6531e7dee5ff9b27c108e8614d336657e68a21 (patch) | |
tree | 43b23c55f5bd5c6872c71c928e2b68c78dff3880 /Lib/os.py | |
parent | 14a767d4f499c8ead06a14d9c64c01c4ced95e61 (diff) | |
download | cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.zip cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.gz cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.bz2 |
Removed remnants of os.path.walk().
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -264,7 +264,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False): from os.path import join, isdir, islink # We may not have read permission for top, in which case we can't - # get a list of the files the directory contains. os.path.walk + # get a list of the files the directory contains. os.walk # always suppressed the exception then, rather than blow up for a # minor reason when (say) a thousand readable directories are still # left to visit. That logic is copied here. |