New submission from Alberto Moral :
http.cookiejar (cookielib, for python2.*) does not parse some cookies' Expires
date.
For example: "Friday, 1-August-1997 00:00:00 GMT" does not work (while: "Fri,
01 Aug 1997 00:00:00 GMT" works fine)
This is basically due to lo
Alberto Moral added the comment:
Thanks for your answer. I have not found any RFCs with full month names either.
I'm afraid I'm not an expert here.
But the case is that I get them in my work. Here is an example of response
header:
HTTP/1.1 200 OK
Server: Oracle-iPlanet-Web-
Alberto Moral added the comment:
Yes, I was thinking that it could be a matter of configuration of the server
(?).
By the way, and just for fun, I've just realized that truncating mon at the
begining of the _str2time funtion is a very bad idea because mon could also be
an int.
A b