[issue13968] Support recursive globs
Yuval Greenfield
report at bugs.python.org
Mon Feb 13 18:20:32 CET 2012
Yuval Greenfield <ubershmekel at gmail.com> added the comment:
I noticed this implementation on PyPI http://packages.python.org/rglob/ which sort of has rglob defined as
def rglob(pattern, base='.'):
Which seems like the most comprehensible way of doing this, though not the most compact.
The code itself isn't in the best shape http://cpiekarski.com/2011/09/23/python-recursive-glob/ eg it uses list comprehensions instead of generators. But I think I like this API better as it really is easier to explain.
----------
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13968>
_______________________________________
More information about the Python-bugs-list
mailing list