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

Unified Diff: third_party/gsutil/boto/boto/jsonresponse.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/gsutil/boto/boto/iam/summarymap.py ('k') | third_party/gsutil/boto/boto/manage/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gsutil/boto/boto/jsonresponse.py
diff --git a/third_party/gsutil/20110627/boto/boto/jsonresponse.py b/third_party/gsutil/boto/boto/jsonresponse.py
similarity index 95%
rename from third_party/gsutil/20110627/boto/boto/jsonresponse.py
rename to third_party/gsutil/boto/boto/jsonresponse.py
index 94338159847d9bba029bbcc68bb81fd2bb6acefe..01e1f54ff73ecbfc5b31a9f524ac3f2bc07adb11 100644
--- a/third_party/gsutil/20110627/boto/boto/jsonresponse.py
+++ b/third_party/gsutil/boto/boto/jsonresponse.py
@@ -134,12 +134,15 @@ class ListElement(list):
def startElement(self, name, attrs, connection):
for lm in self.list_marker:
if name.endswith(lm):
- l = ListElement(self.connection, name, self.item_marker,
- pythonize_name=self.pythonize_name)
+ l = ListElement(self.connection, name,
+ self.list_marker, self.item_marker,
+ self.pythonize_name)
setattr(self, self.get_name(name), l)
return l
if name in self.item_marker:
e = Element(self.connection, name, parent=self,
+ list_marker=self.list_marker,
+ item_marker=self.item_marker,
pythonize_name=self.pythonize_name)
self.append(e)
return e
« no previous file with comments | « third_party/gsutil/boto/boto/iam/summarymap.py ('k') | third_party/gsutil/boto/boto/manage/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698