Currently this interface doesn't match the standard os.walk interface, which returns an iterator of dirname, dirs, files. This fixes that, and cleans up a few other methods that were using walk.
Note that I'm not sure if we should deprecate the old interface (how many people rely on this functionality?), and if so how should we go about doing the deprecation.
Currently this interface doesn't match the standard
os.walk
interface, which returns an iterator ofdirname, dirs, files
. This fixes that, and cleans up a few other methods that were usingwalk
.Note that I'm not sure if we should deprecate the old interface (how many people rely on this functionality?), and if so how should we go about doing the deprecation.