Index: third_party/google-endpoints/future/moves/_markupbase.py |
diff --git a/third_party/google-endpoints/future/moves/_markupbase.py b/third_party/google-endpoints/future/moves/_markupbase.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f9fb4bbf28366cb3c386bcfdcdceb7761c3dcf5a |
--- /dev/null |
+++ b/third_party/google-endpoints/future/moves/_markupbase.py |
@@ -0,0 +1,8 @@ |
+from __future__ import absolute_import |
+from future.utils import PY3 |
+ |
+if PY3: |
+ from _markupbase import * |
+else: |
+ __future_module__ = True |
+ from markupbase import * |