(copyright_style, year_style, name)
| 90 | ANY_COPYRIGHT_COMPILED = re.compile(ANY_COPYRIGHT_STYLE_OR_YEAR_STYLE) |
| 91 | |
| 92 | def compile_copyright_regex(copyright_style, year_style, name): |
| 93 | return re.compile(r'%s %s,? %s( +\*)?\n' % (copyright_style, year_style, name)) |
| 94 | |
| 95 | EXPECTED_HOLDER_NAMES = [ |
| 96 | r"Satoshi Nakamoto", |