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

Side by Side Diff: git_number.py

Issue 955993006: Handle KeyboardInterrupt consistently in python scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 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 """Usage: %prog [options] [<commitref>]* 6 """Usage: %prog [options] [<commitref>]*
7 7
8 If no <commitref>'s are supplied, it defaults to HEAD. 8 If no <commitref>'s are supplied, it defaults to HEAD.
9 9
10 Calculates the generation number for one or more commits in a git repo. 10 Calculates the generation number for one or more commits in a git repo.
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 targets = git.parse_commitrefs(*(args or ['HEAD'])) 268 targets = git.parse_commitrefs(*(args or ['HEAD']))
269 except git.BadCommitRefException as e: 269 except git.BadCommitRefException as e:
270 parser.error(e) 270 parser.error(e)
271 271
272 load_generation_numbers(targets) 272 load_generation_numbers(targets)
273 if not opts.no_cache: 273 if not opts.no_cache:
274 finalize(targets) 274 finalize(targets)
275 275
276 print '\n'.join(map(str, map(get_num, targets))) 276 print '\n'.join(map(str, map(get_num, targets)))
277 return 0 277 return 0
278 except KeyboardInterrupt: 278 except KeyboardInterrupt:
M-A Ruel 2015/02/26 00:57:39 It's already handled there, worth removing
Sam Clegg 2015/02/26 17:29:21 Done.
279 return 1 279 return 1
280 return 0
280 281
281 282
282 if __name__ == '__main__': # pragma: no cover 283 if __name__ == '__main__': # pragma: no cover
283 sys.exit(main()) 284 try:
285 sys.exit(main())
286 except KeyboardInterrupt:
287 print 'interrupted'
288 sys.exit(1)
OLDNEW
« no previous file with comments | « git_new_branch.py ('k') | git_rebase_update.py » ('j') | git_upstream_diff.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698