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: httplib.HTTPConnection.request() bug
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jhylton Nosy List: jhylton, jjlee
Priority: high Keywords: patch

Created on 2004-07-25 17:56 by jjlee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
httplib.py.patch jjlee, 2004-07-27 19:55 version 2
test_httplib.py.patch jjlee, 2004-07-27 19:56
Messages (4)
msg46457 - (view) Author: John J Lee (jjlee) Date: 2004-07-25 17:56
996159 reveals a problem with 
httplib.HTTPConnection.request().

The underlying problem is that, while this method checks 
no explicit Host: header was provided, it fails to do the 
same for Accept-Encoding: and Content-Length:

This patch fixes that.
msg46458 - (view) Author: John J Lee (jjlee) Date: 2004-07-25 18:00
Logged In: YES 
user_id=261020

This is important to get into 2.4, because it breaks urllib2.

I haven't run the tests yet, or done any manual tests.  I'll try 
and do that tomorrow.
msg46459 - (view) Author: John J Lee (jjlee) Date: 2004-07-25 18:09
Logged In: YES 
user_id=261020

Of course, urllib2 should also be fixed not to add Host and 
Content-Length headers (httplib makes a better job of it), but 
that's a separate bug which I'll file separately.
msg46460 - (view) Author: John J Lee (jjlee) Date: 2004-07-27 19:55
Logged In: YES 
user_id=261020

OK, I have now tested my patch, and uploaded a new one which
is syntactically correct ;-) along with a patch for the test
I added to test_httplib.py.

No doc changes are required.
History
Date User Action Args
2022-04-11 14:56:05adminsetgithub: 40640
2004-07-25 17:56:20jjleecreate