From 54c7e6aa663fc83e63e44d3b407fe55584ac7fdc Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 3 Jun 2014 06:37:27 -0400 Subject: Fix the new FnmatchMatcher for >100 patterns --- coverage/files.py | 1 + 1 file changed, 1 insertion(+) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index 08ce1e8..80b6957 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -188,6 +188,7 @@ class FnmatchMatcher(object): def match(self, fpath): """Does `fpath` match one of our filename patterns?""" + #print("Matching %r against %r" % (self.re.pattern, fpath)) return self.re.match(fpath) is not None -- cgit v1.2.1