diff options
author | Timothy Edmund Crosley <timothy.crosley@gmail.com> | 2013-11-13 19:37:52 -0800 |
---|---|---|
committer | Timothy Edmund Crosley <timothy.crosley@gmail.com> | 2013-11-13 19:37:52 -0800 |
commit | 6c323043d6e2080a4af3cba6d8a2475d74b93a22 (patch) | |
tree | f5e30b542ed80dc6971e492c4bd1cb3145c28948 /pies/http/cookies.py | |
parent | 44daea46c592ce464eac7de56ab92d17336e1d9b (diff) | |
parent | 032179edda73bdb3fb2cfd4969243c526fa545aa (diff) | |
download | pies-6c323043d6e2080a4af3cba6d8a2475d74b93a22.tar.gz |
Merge pull request #5 from timothycrosley/feature/modernize-pies
Feature/modernize pies
Diffstat (limited to 'pies/http/cookies.py')
-rw-r--r-- | pies/http/cookies.py | 8 |
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 * |