Commit | Line | Data |
---|---|---|
c638d827 CR |
1 | |
2 | try: | |
3 | from http import cookies as Cookie | |
4 | from http.cookies import CookieError, BaseCookie, SimpleCookie | |
5 | from http.cookies import _getdate as get_cookie_date | |
6 | except: | |
7 | from Cookie import CookieError, BaseCookie, SimpleCookie | |
8 | from Cookie import _getdate as get_cookie_date |