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 tds333
Recipients jonash, pitrou, r.david.murray, tds333, vstinner
Date 2014-11-10.08:53:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415609603.2.0.66735790191.issue19767@psf.upfronthosting.co.za>
In-reply-to
Content
Why not implement this pattern with

def dirs(pattern)
and 
def files(pattern)

where both are a simple shortcut for
(p for p in mypath.glob(pattern) if p is_file())
or is_dir()

?
History
Date User Action Args
2014-11-10 08:53:23tds333setrecipients: + tds333, pitrou, vstinner, r.david.murray, jonash
2014-11-10 08:53:23tds333setmessageid: <1415609603.2.0.66735790191.issue19767@psf.upfronthosting.co.za>
2014-11-10 08:53:23tds333linkissue19767 messages
2014-11-10 08:53:23tds333create