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.

classification
Title: redirect fails in urllib2
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jhylton Nosy List: davidmlewis, jhylton, jjlee, theller
Priority: normal Keywords: patch

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:30adminsetgithub: 38422
2003-05-02 04:58:05davidmlewiscreate