Lines Matching refs:author
175 …authors_missing_email = filter(lambda author: author.find('@') == -1, self._last_commit_time_by_au…
176 …authors_with_email = filter(lambda author: author.find('@') != -1, self._last_commit_time_by_autho…
177 … prefixes_of_authors_with_email = map(lambda author: author.split('@')[0], authors_with_email)
179 for author in authors_missing_email:
181 author_email = self.login_to_email_address.get(author)
184 if not author_email and author in prefixes_of_authors_with_email:
185 author_email_index = prefixes_of_authors_with_email.index(author)
193 no_email_commit_time = self._last_commit_time_by_author_cache.get(author)
198 del self._last_commit_time_by_author_cache[author]
219 for (author, last_commit) in authors_and_last_commits:
222 committer_record = committer_list.committer_by_email(author)
223 … self._print_three_column_row(column_widths, (str(last_commit_date), author, committer_record))
228 for author in last_commit_time_by_author:
229 if not committer_list.committer_by_email(author):
230 missing_from_committers_py.append(author)