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 wyz23x2
Recipients wyz23x2
Date 2021-03-15.12:30:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1615811448.09.0.46189738482.issue43500@roundup.psfhosted.org>
In-reply-to
Content
The fnmatch module has a filter() function:
> Construct a list from those elements of the iterable names that match pattern.
> It is the same as [n for n in names if fnmatch(n, pattern)], but implemented more efficiently.
However, since there is the fnmatchcase() function, we should have filtercase() too.
History
Date User Action Args
2021-03-15 12:30:48wyz23x2setrecipients: + wyz23x2
2021-03-15 12:30:48wyz23x2setmessageid: <1615811448.09.0.46189738482.issue43500@roundup.psfhosted.org>
2021-03-15 12:30:48wyz23x2linkissue43500 messages
2021-03-15 12:30:47wyz23x2create