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

Side by Side Diff: git_upstream_diff.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') | « git_try.py ('k') | gn.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 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 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 import argparse 6 import argparse
7 import sys 7 import sys
8 8
9 import subprocess2 9 import subprocess2
10 10
(...skipping 20 matching lines...) Expand all
31 print 'fatal: No upstream configured for branch \'%s\'' % cur 31 print 'fatal: No upstream configured for branch \'%s\'' % cur
32 return 1 32 return 1
33 33
34 cmd = [git.GIT_EXE, 'diff', '--patience', '-C', '-C'] 34 cmd = [git.GIT_EXE, 'diff', '--patience', '-C', '-C']
35 if opts.wordwise: 35 if opts.wordwise:
36 cmd += ['--word-diff=color', r'--word-diff-regex=(\w+|[^[:space:]])'] 36 cmd += ['--word-diff=color', r'--word-diff-regex=(\w+|[^[:space:]])']
37 cmd += [git.get_or_create_merge_base(cur, par)] 37 cmd += [git.get_or_create_merge_base(cur, par)]
38 38
39 cmd += extra_args 39 cmd += extra_args
40 40
41 subprocess2.check_call(cmd) 41 return subprocess2.check_call(cmd)
42 42
43 43
44 if __name__ == '__main__': 44 if __name__ == '__main__':
45 sys.exit(main(sys.argv[1:])) 45 try:
46 sys.exit(main(sys.argv[1:]))
47 except KeyboardInterrupt:
48 sys.stderr.write('interrupted\n')
49 sys.exit(1)
OLDNEW
« clang_format.py ('K') | « git_try.py ('k') | gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698