D | list_backports.py | 78 parser.add_argument("-r", "--repo", default="zephyr", 121 def __init__(self, repo, base, pulls): argument 123 self._repo = repo 131 def by_date_range(repo, base, start_date, end_date, excludes): argument 132 """Create a Backport object with the provided repo, 138 unfiltered_pulls = repo.get_pulls( 158 return Backport(repo, base, pulls) 161 def by_included_prs(repo, base, includes): argument 162 """Create a Backport object with the provided repo, 169 p = repo.get_pull(i) [all …]
|