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

Side by Side Diff: boto/emr/bootstrap_action.py

Issue 8386013: Merging in latest boto. (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Redoing vendor drop by deleting and then merging. Created 9 years, 1 month 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
« no previous file with comments | « boto/ecs/__init__.py ('k') | boto/emr/connection.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 # Copyright (c) 2010 Spotify AB 1 # Copyright (c) 2010 Spotify AB
2 # Copyright (c) 2010 Yelp
2 # 3 #
3 # Permission is hereby granted, free of charge, to any person obtaining a 4 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the 5 # copy of this software and associated documentation files (the
5 # "Software"), to deal in the Software without restriction, including 6 # "Software"), to deal in the Software without restriction, including
6 # without limitation the rights to use, copy, modify, merge, publish, dis- 7 # without limitation the rights to use, copy, modify, merge, publish, dis-
7 # tribute, sublicense, and/or sell copies of the Software, and to permit 8 # tribute, sublicense, and/or sell copies of the Software, and to permit
8 # persons to whom the Software is furnished to do so, subject to the fol- 9 # persons to whom the Software is furnished to do so, subject to the fol-
9 # lowing conditions: 10 # lowing conditions:
10 # 11 #
11 # The above copyright notice and this permission notice shall be included 12 # The above copyright notice and this permission notice shall be included
(...skipping 22 matching lines...) Expand all
34 35
35 if self.bootstrap_action_args: 36 if self.bootstrap_action_args:
36 args.extend(self.bootstrap_action_args) 37 args.extend(self.bootstrap_action_args)
37 38
38 return args 39 return args
39 40
40 def __repr__(self): 41 def __repr__(self):
41 return '%s.%s(name=%r, path=%r, bootstrap_action_args=%r)' % ( 42 return '%s.%s(name=%r, path=%r, bootstrap_action_args=%r)' % (
42 self.__class__.__module__, self.__class__.__name__, 43 self.__class__.__module__, self.__class__.__name__,
43 self.name, self.path, self.bootstrap_action_args) 44 self.name, self.path, self.bootstrap_action_args)
OLDNEW
« no previous file with comments | « boto/ecs/__init__.py ('k') | boto/emr/connection.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698