summaryrefslogtreecommitdiffstats
path: root/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py
diff options
context:
space:
mode:
Diffstat (limited to 'FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py')
-rw-r--r--FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py b/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py
deleted file mode 100644
index 1b74fe2..0000000
--- a/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/http/cookies.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from __future__ import absolute_import
-from future.utils import PY3
-
-if PY3:
- from http.cookies import *
-else:
- __future_module__ = True
- from Cookie import *
- from Cookie import Morsel # left out of __all__ on Py2.7!