Return True if the string ``s`` matches any junk patterns.
(s, patterns=COPYRIGHTS_JUNK_PATTERN_MATCHERS)
| 3790 | |
| 3791 | |
| 3792 | def is_junk_copyright(s, patterns=COPYRIGHTS_JUNK_PATTERN_MATCHERS): |
| 3793 | """ |
| 3794 | Return True if the string ``s`` matches any junk patterns. |
| 3795 | """ |
| 3796 | return any(matcher(s) for matcher in patterns) |
| 3797 | |
| 3798 | ################################################################################ |
| 3799 | # AUTHORS CLEANUPS |
no outgoing calls
no test coverage detected