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 |