ncoghlan / walkdir

Other
11 stars 3 forks source link

`min_depth` and the `*_paths` APIs won't work with os.fwalk #6

Closed ncoghlan closed 8 years ago

ncoghlan commented 8 years ago

min_depth, dir_paths, file_paths, and all_paths currently unpack the underlying walk_iter entries into a 3-tuple - this will break with os.fwalk, which produces a 4-tuple (appending the numeric file descriptor for the directory).

ncoghlan commented 8 years ago

Addressed by @palaviv in #10