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

Unified Diff: third_party/google-endpoints/future/moves/collections.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/google-endpoints/future/moves/collections.py
diff --git a/third_party/google-endpoints/future/moves/collections.py b/third_party/google-endpoints/future/moves/collections.py
new file mode 100644
index 0000000000000000000000000000000000000000..664ee6a3d007f67d1b93b335d89197a54467f7ab
--- /dev/null
+++ b/third_party/google-endpoints/future/moves/collections.py
@@ -0,0 +1,18 @@
+from __future__ import absolute_import
+import sys
+
+from future.utils import PY2, PY26
+__future_module__ = True
+
+from collections import *
+
+if PY2:
+ from UserDict import UserDict
+ from UserList import UserList
+ from UserString import UserString
+
+if PY26:
+ from future.backports.misc import OrderedDict, Counter
+
+if sys.version_info < (3, 3):
+ from future.backports.misc import ChainMap, _count_elements
« no previous file with comments | « third_party/google-endpoints/future/moves/builtins.py ('k') | third_party/google-endpoints/future/moves/configparser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698