Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
d49c97bd
Commit
d49c97bd
authored
May 07, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return tuple, not list
so the output can be memoized
parent
a5f078c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
scripts/release.py
+4
-4
No files found.
scripts/release.py
View file @
d49c97bd
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment