Issue 731153: redirect fails in urllib2 (original) (raw)

Issue731153

Created on 2003-05-02 04:58 by davidmlewis, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
urllib2.patch davidmlewis,2003-05-02 04:58 corrected redirect code
Messages (3)
msg43568 - (view) Author: David Lewis (davidmlewis) Date: 2003-05-02 04:58
There were two simple errors in urllib2's redirection code. In two cases, req.method was being invoked when the author meant req.get_method. The second error was the failure to make the redirected URL available to the redirect handler; I passed it as a parameter, but it could have been added as another instance variable.
msg43569 - (view) Author: John J Lee (jjlee) Date: 2003-08-23 00:20
Logged In: YES user_id=261020 This was fixed some time ago, and should be closed.
msg43570 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2003-08-23 17:43
Logged In: YES user_id=11105 Closing.
History
Date User Action Args
2022-04-10 16:08:30 admin set github: 38422
2003-05-02 04:58:05 davidmlewis create