summaryrefslogtreecommitdiff
path: root/pies/http/cookies.py
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2013-11-13 21:59:05 -0500
committerTimothy Crosley <timothy.crosley@gmail.com>2013-11-13 21:59:05 -0500
commitf7780c91f8e50719ed8b3be641942f2db8b564e9 (patch)
tree0eeb0b72bcc8c18f700cde60de13c2c69f856480 /pies/http/cookies.py
parent4badd66c595e8d90e8ffa80ce44ab4de228ab393 (diff)
downloadpies-f7780c91f8e50719ed8b3be641942f2db8b564e9.tar.gz
First steps to pies 2.0
Diffstat (limited to 'pies/http/cookies.py')
-rw-r--r--pies/http/cookies.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pies/http/cookies.py b/pies/http/cookies.py
new file mode 100644
index 0000000..8108b66
--- /dev/null
+++ b/pies/http/cookies.py
@@ -0,0 +1,8 @@
+from __future__ import absolute_import
+
+from ..version_info import PY3
+
+if PY3:
+ from http.cookies import *
+else:
+ from Cookie import *