Home | History | Annotate | Download | only in python2.7

Lines Matching defs:walk

209 def walk(top, topdown=True, onerror=None, followlinks=False):
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks):
299 __all__.append("walk")