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 serhiy.storchaka
Recipients louielu, serhiy.storchaka, vstinner
Date 2017-11-21.16:22:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511281327.55.0.213398074469.issue31324@psf.upfronthosting.co.za>
In-reply-to
Content
We could split patterns on two parts and create both matchers. Then the final matching function could look like:

return _match_test_patterns is None or test_id in id_set or regex_match(test_id) or any(map(regex_match, test_id.split(".")))


I don't know whether it is worth to do.
History
Date User Action Args
2017-11-21 16:22:07serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, louielu
2017-11-21 16:22:07serhiy.storchakasetmessageid: <1511281327.55.0.213398074469.issue31324@psf.upfronthosting.co.za>
2017-11-21 16:22:07serhiy.storchakalinkissue31324 messages
2017-11-21 16:22:07serhiy.storchakacreate