Add future 0.18.2
This commit is contained in:
9
lib/future/moves/http/cookies.py
Normal file
9
lib/future/moves/http/cookies.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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!
|
Reference in New Issue
Block a user