Commit d49c97bd by David Baumgold

return tuple, not list

so the output can be memoized
parent a5f078c6
...@@ -341,11 +341,11 @@ def generate_pr_table(start_ref, end_ref): ...@@ -341,11 +341,11 @@ def generate_pr_table(start_ref, end_ref):
@memoized @memoized
def get_commits_not_in_prs(start_ref, end_ref): def get_commits_not_in_prs(start_ref, end_ref):
""" """
Return a list of commits that exist between start_ref and end_ref, Return a tuple of commits that exist between start_ref and end_ref,
but were not merged to the end_ref. If everyone is following the but were not merged to the end_ref. If everyone is following the
pull request process correctly, this should return an empty list. pull request process correctly, this should return an empty tuple.
""" """
return list(Commit.iter_items( return tuple(Commit.iter_items(
repo, repo,
"{start}..{end}".format(start=start_ref, end=end_ref), "{start}..{end}".format(start=start_ref, end=end_ref),
first_parent=True, no_merges=True, first_parent=True, no_merges=True,
...@@ -420,7 +420,7 @@ def main(): ...@@ -420,7 +420,7 @@ def main():
) )
print("\n") print("\n")
print(generate_pr_table(args.previous, args.current)) print(generate_pr_table(args.previous, args.current))
commits_without_prs = list(get_commits_not_in_prs(args.previous, args.current)) commits_without_prs = get_commits_not_in_prs(args.previous, args.current)
if commits_without_prs: if commits_without_prs:
num = len(commits_without_prs) num = len(commits_without_prs)
plural = num > 1 plural = num > 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment