Mercurial > p > roundup > code
view roundup/anypy/cookie_.py @ 4901:fa268ea457db
Add note about dropping support for Python v2.5
After some discussion on the roundup-devel mailing list it was agreed
that support for Python v2.5 should be dropped in the v1.6 release of
Roundup.
Dropping support for Python v2.5 should allow a number of cleanups to
the code base as well a provide and opportunity to start porting Roundup
to Python v3.
| author | John Kristensen <john@jerrykan.com> |
|---|---|
| date | Wed, 25 Jun 2014 13:19:42 +1000 |
| parents | 74476eaac38a |
| children | dfd0bcc947e5 |
line wrap: on
line source
try: from http import cookies as Cookie from http.cookies import CookieError, BaseCookie, SimpleCookie from http.cookies import _getdate as get_cookie_date except: from Cookie import CookieError, BaseCookie, SimpleCookie from Cookie import _getdate as get_cookie_date
