Message195610
For those who are affected by this bug, here's a snippet to monkey-patch cookielib on any Python 2.4 to 2.7.
A more complete version of this was attached to my message a moment ago.
==========================================
import cookielib
try:
cookielib.time2isoz(2**32)
except ValueError:
from datetime import datetime, timedelta
def time2isoz(t=None):
if t is None:
dt = datetime.now()
else:
dt = datetime.utcfromtimestamp(0) + timedelta(seconds=int(t))
return "%04d-%02d-%02d %02d:%02d:%02dZ"%\
(dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second)
cookielib.time2isoz = time2isoz
========================================== |
|
Date |
User |
Action |
Args |
2013-08-19 07:44:41 | Alex Quinn | set | recipients:
+ Alex Quinn, jjlee, belopolsky, vstinner, hollec, python-dev |
2013-08-19 07:44:41 | Alex Quinn | set | messageid: <1376898281.55.0.543423670833.issue5537@psf.upfronthosting.co.za> |
2013-08-19 07:44:41 | Alex Quinn | link | issue5537 messages |
2013-08-19 07:44:41 | Alex Quinn | create | |
|