filter.py | 94 def should_check(self, category): member in class:_CategoryFilter 111 should_check = True # All categories checked by default. 115 should_check = rule.startswith('+') 116 self._should_check_category[category] = should_check # Update cache. 117 return should_check 172 # CategoryFilter.should_check(). 246 def should_check(self, category, path): member in class:FilterConfiguration 277 return self._filter_from_path(path).should_check(category)
|