Return True if text is a sort-of-like a host domain name. For accepting/blocking domains.
(text)
| 588 | return True |
| 589 | |
| 590 | def liberal_is_HDN(text): |
| 591 | """Return True if text is a sort-of-like a host domain name. |
| 592 | |
| 593 | For accepting/blocking domains. |
| 594 | |
| 595 | """ |
| 596 | if IPV4_RE.search(text): |
| 597 | return False |
| 598 | return True |
| 599 | |
| 600 | def user_domain_match(A, B): |
| 601 | """For blocking/accepting domains. |
no test coverage detected
searching dependent graphs…