Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: my_reviews.py

Issue 16003003: Fix my_reviews.py to not print negative numbers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: my_reviews.py
diff --git a/my_reviews.py b/my_reviews.py
index bd89111050095c37683cf756889d067c7f480e11..b861f91ea415ec3f8901ac7ed13a9a35d4c04fb7 100755
--- a/my_reviews.py
+++ b/my_reviews.py
@@ -110,12 +110,16 @@ class Stats(object):
def finalize(self, first_day, last_day):
if self.actually_reviewed:
+ assert self.actually_reviewed > 0
self.percent_lgtm = (self.lgtms * 100. / self.actually_reviewed)
self.percent_drive_by = (self.drive_by * 100. / self.actually_reviewed)
self.percent_not_requested = (
self.not_requested * 100. / self.actually_reviewed)
+ assert bool(first_day) == bool(last_day)
if first_day and last_day:
+ assert first_day < last_day
self.days = (to_datetime(last_day) - to_datetime(first_day)).days + 1
+ assert self.days > 0
def _process_issue_lgtms(issue, reviewer, stats):
@@ -217,26 +221,26 @@ def print_reviews(reviewer, created_after, created_before, instance_url):
# The stats we gather. Feel free to send me a CL to get more stats.
stats = Stats()
- last_issue = None
- first_day = None
- last_day = None
-
# Column sizes need to match print_issue() output.
print >> sys.stderr, (
'Issue Creation Did Latency Owner Reviewers')
# See def search() in rietveld.py to see all the filters you can use.
+ issues = []
for issue in remote.search(
reviewer=reviewer,
created_after=created_after,
created_before=created_before,
with_messages=True):
- last_issue = issue
- if not first_day:
- first_day = issue['created'][:10]
+ issues.append(issue)
print_issue(issue, username(reviewer), stats)
- if last_issue:
- last_day = last_issue['created'][:10]
+
+ issues.sort(key=lambda x: x['created'])
+ first_day = None
+ last_day = None
+ if issues:
+ first_day = issues[0]['created'][:10]
+ last_day = issues[-1]['created'][:10]
stats.finalize(first_day, last_day)
print >> sys.stderr, (
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698