annotate roundup/anypy/cookie_.py @ 4478:e7dcec8c40e9

- Add regression test for -c option to mailgw .-- bug in issue2550697 wasn't noticed, it would be now.
author Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
date Thu, 14 Apr 2011 07:07:22 +0000
parents 74476eaac38a
children dfd0bcc947e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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

Roundup Issue Tracker: http://roundup-tracker.org/