Mercurial > p > roundup > code
view roundup/anypy/cookie_.py @ 4470:21a95ba01a42
Fix search for xapian 1.2 issue2550676.
| author | Bernhard Reiter <Bernhard.Reiter@intevation.de> |
|---|---|
| date | Sat, 26 Feb 2011 20:57:11 +0000 |
| 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
