This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ubershmekel
Recipients eli.bendersky, eric.araujo, giampaolo.rodola, ncoghlan, pitrou, r.david.murray, rhettinger, ubershmekel
Date 2012-02-13.17:20:31
SpamBayes Score 0.00053944153
Marked as misclassified No
Message-id <1329153632.5.0.452239857307.issue13968@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2012-02-13 17:20:32ubershmekelsetrecipients: + ubershmekel, rhettinger, ncoghlan, pitrou, giampaolo.rodola, eric.araujo, r.david.murray, eli.bendersky
2012-02-13 17:20:32ubershmekelsetmessageid: <1329153632.5.0.452239857307.issue13968@psf.upfronthosting.co.za>
2012-02-13 17:20:31ubershmekellinkissue13968 messages
2012-02-13 17:20:31ubershmekelcreate