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 ncoghlan
Recipients eli.bendersky, eric.araujo, giampaolo.rodola, ncoghlan, pitrou, ubershmekel
Date 2012-02-09.12:07:39
SpamBayes Score 0.00068302423
Marked as misclassified No
Message-id <1328789260.2.0.382692841295.issue13968@psf.upfronthosting.co.za>
In-reply-to
Content
This discussion (particularly my final globtree recipe) made me realise that the exact same approach would greatly improve the usability of the all_paths, file_paths and dir_paths iterators in walkdir [1]. Accordingly, walkdir 0.4 will let you write a recursive grep for ReST and Python source files as:

    file_paths(top, included_files="*.py *.rst".split())

Scanning multiple directories will be as simple as:

    file_paths(dir1, dir2, included_files="*.py *.rst".split())

[1] https://bitbucket.org/ncoghlan/walkdir/issue/15
History
Date User Action Args
2012-02-09 12:07:40ncoghlansetrecipients: + ncoghlan, pitrou, giampaolo.rodola, eric.araujo, eli.bendersky, ubershmekel
2012-02-09 12:07:40ncoghlansetmessageid: <1328789260.2.0.382692841295.issue13968@psf.upfronthosting.co.za>
2012-02-09 12:07:39ncoghlanlinkissue13968 messages
2012-02-09 12:07:39ncoghlancreate