(self, domain)
| 925 | self._blocked_domains = tuple(blocked_domains) |
| 926 | |
| 927 | def is_blocked(self, domain): |
| 928 | for blocked_domain in self._blocked_domains: |
| 929 | if user_domain_match(domain, blocked_domain): |
| 930 | return True |
| 931 | return False |
| 932 | |
| 933 | def allowed_domains(self): |
| 934 | """Return None, or the sequence of allowed domains (as a tuple).""" |
no test coverage detected