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