Mercurial > p > roundup > code
view roundup/anypy/cookie_.py @ 4636:f338c19b0a6d
closing issue2550762 Minor Documentation fix in doc/developers.txt, thanks to W. Trevor King.
| author | Bernhard Reiter <bernhard@intevation.de> |
|---|---|
| date | Fri, 29 Jun 2012 16:34:42 +0200 |
| 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
