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

Side by Side Diff: my_activity.py

Issue 955993006: Handle KeyboardInterrupt consistently in python scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: tweek test expectations Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« clang_format.py ('K') | « gn.py ('k') | my_reviews.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Get stats about your activity. 6 """Get stats about your activity.
7 7
8 Example: 8 Example:
9 - my_activity.py for stats for the current week (last week on mondays). 9 - my_activity.py for stats for the current week (last week on mondays).
10 - my_activity.py -Q for stats for last quarter. 10 - my_activity.py -Q for stats for last quarter.
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 840
841 print '\n\n\n' 841 print '\n\n\n'
842 842
843 my_activity.print_changes() 843 my_activity.print_changes()
844 my_activity.print_reviews() 844 my_activity.print_reviews()
845 my_activity.print_issues() 845 my_activity.print_issues()
846 return 0 846 return 0
847 847
848 848
849 if __name__ == '__main__': 849 if __name__ == '__main__':
850 sys.exit(main()) 850 try:
851 sys.exit(main())
852 except KeyboardInterrupt:
853 sys.stderr.write('interrupted\n')
854 sys.exit(1)
OLDNEW
« clang_format.py ('K') | « gn.py ('k') | my_reviews.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698