From 26406f13e81807f8a3e94eae31fa7acc0bbaa0c2 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Thu, 3 May 2012 20:18:01 +1200 Subject: Make _make_tag_filter public. --- python/subunit/test_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/subunit/test_results.py') diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py index 1b14c5f..c00a2d3 100644 --- a/python/subunit/test_results.py +++ b/python/subunit/test_results.py @@ -309,7 +309,7 @@ def and_predicates(predicates): return lambda *args, **kwargs: all(p(*args, **kwargs) for p in predicates) -def _make_tag_filter(with_tags, without_tags): +def make_tag_filter(with_tags, without_tags): """Make a callback that checks tests against tags.""" with_tags = with_tags and set(with_tags) or None -- cgit v1.2.1