Mercurial > p > roundup > code
annotate 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 |
| rev | line source |
|---|---|
|
4362
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
1 |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
2 try: |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
3 from http import cookies as Cookie |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
4 from http.cookies import CookieError, BaseCookie, SimpleCookie |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
5 from http.cookies import _getdate as get_cookie_date |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
6 except: |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
7 from Cookie import CookieError, BaseCookie, SimpleCookie |
|
74476eaac38a
more modernisation
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
8 from Cookie import _getdate as get_cookie_date |
