This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author belopolsky
Recipients belopolsky, orsenthil, pitrou
Date 2010-06-10.19:48:02
SpamBayes Score 0.0011768853
Marked as misclassified No
Message-id <1276199283.95.0.0209037245511.issue8963@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python.exe -m test.regrtest -unetwork test_urllibnet
test_urllibnet
1 test OK.

Also the arguments to strptime from reported error message work fine:

>>> import time
>>> time.strptime('Thu, 10 Jun 2010 19:03:39 GMT', '%a, %d %b %Y %H:%M:%S GMT')
time.struct_time(tm_year=2010, tm_mon=6, tm_mday=10, tm_hour=19, tm_min=3, tm_sec=39, tm_wday=3, tm_yday=161, tm_isdst=-1)
>>> from datetime import *
>>> datetime.strptime('Thu, 10 Jun 2010 19:03:39 GMT', '%a, %d %b %Y %H:%M:%S GMT')
datetime.datetime(2010, 6, 10, 19, 3, 39)
History
Date User Action Args
2010-06-10 19:48:04belopolskysetrecipients: + belopolsky, orsenthil, pitrou
2010-06-10 19:48:03belopolskysetmessageid: <1276199283.95.0.0209037245511.issue8963@psf.upfronthosting.co.za>
2010-06-10 19:48:02belopolskylinkissue8963 messages
2010-06-10 19:48:02belopolskycreate