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

Side by Side Diff: polymer_0.4.0/bower_components/web-animations-js/test/update-testcases.py

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 import cStringIO as StringIO 3 import cStringIO as StringIO
4 from fnmatch import fnmatch 4 from fnmatch import fnmatch
5 import difflib 5 import difflib
6 import os 6 import os
7 import sys 7 import sys
8 8
9 9
10 def get_name(filename): 10 def get_name(filename):
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'Updating %s with the following diff.\n' % testcase_file) 54 'Updating %s with the following diff.\n' % testcase_file)
55 55
56 for line in lines: 56 for line in lines:
57 sys.stdout.write(line) 57 sys.stdout.write(line)
58 58
59 sys.exit(1) 59 sys.exit(1)
60 60
61 61
62 if __name__ == '__main__': 62 if __name__ == '__main__':
63 main() 63 main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698