diff options
Diffstat (limited to 'FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookiejar.py')
| -rw-r--r-- | FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookiejar.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookiejar.py b/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookiejar.py new file mode 100644 index 0000000..ea00df7 --- /dev/null +++ b/FOSS/Python/Dependencies/future-0.18.2/src/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 * |
