Index: third_party/google-endpoints/future/moves/http/client.py |
diff --git a/third_party/google-endpoints/future/moves/http/client.py b/third_party/google-endpoints/future/moves/http/client.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..55f9c9c1ae15ef4e37b4971b4104e7147baa4c21 |
--- /dev/null |
+++ b/third_party/google-endpoints/future/moves/http/client.py |
@@ -0,0 +1,8 @@ |
+from future.utils import PY3 |
+ |
+if PY3: |
+ from http.client import * |
+else: |
+ from httplib import * |
+ from httplib import HTTPMessage |
+ __future_module__ = True |