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

Side by Side Diff: third_party/gsutil/boto/boto/sqs/regioninfo.py

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 years, 8 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
« no previous file with comments | « third_party/gsutil/boto/boto/sqs/queue.py ('k') | third_party/gsutil/boto/boto/storage_uri.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) 2006-2010 Mitch Garnaat http://garnaat.org/ 1 # Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/
2 # Copyright (c) 2010, Eucalyptus Systems, Inc. 2 # Copyright (c) 2010, Eucalyptus Systems, Inc.
3 # All rights reserved. 3 # All rights reserved.
4 # 4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a 5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the 6 # copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including 7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish, dis- 8 # without limitation the rights to use, copy, modify, merge, publish, dis-
9 # tribute, sublicense, and/or sell copies of the Software, and to permit 9 # tribute, sublicense, and/or sell copies of the Software, and to permit
10 # persons to whom the Software is furnished to do so, subject to the fol- 10 # persons to whom the Software is furnished to do so, subject to the fol-
(...skipping 12 matching lines...) Expand all
23 # 23 #
24 24
25 from boto.regioninfo import RegionInfo 25 from boto.regioninfo import RegionInfo
26 26
27 class SQSRegionInfo(RegionInfo): 27 class SQSRegionInfo(RegionInfo):
28 28
29 def __init__(self, connection=None, name=None, endpoint=None): 29 def __init__(self, connection=None, name=None, endpoint=None):
30 from boto.sqs.connection import SQSConnection 30 from boto.sqs.connection import SQSConnection
31 RegionInfo.__init__(self, connection, name, endpoint, 31 RegionInfo.__init__(self, connection, name, endpoint,
32 SQSConnection) 32 SQSConnection)
OLDNEW
« no previous file with comments | « third_party/gsutil/boto/boto/sqs/queue.py ('k') | third_party/gsutil/boto/boto/storage_uri.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698