(seen)
| 18 | |
| 19 | |
| 20 | def find_missing_authors(seen): |
| 21 | with open('AUTHORS') as authors: |
| 22 | known = [author(line) for line in authors.readlines()] |
| 23 | |
| 24 | seen_authors = {t[0] for t in seen if proper_name(t[0])} |
| 25 | known_authors = {t[0] for t in known} |
| 26 | # maybe later?: |
| 27 | # seen_emails = {t[1] for t in seen} |
| 28 | # known_emails = {t[1] for t in known} |
| 29 | |
| 30 | pprint(seen_authors - known_authors) |
| 31 | |
| 32 | |
| 33 | if __name__ == '__main__': |
no test coverage detected