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.
Created on 2012年09月14日 10:47 by sanxiago, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg170473 - (view) | Author: Santiago Velasco (sanxiago) | Date: 2012年09月14日 10:47 | |
I have noticed that urllib2 will always send the 'connection: close' in the headers, looking at the code there is no way to override this from outside of the open method. I am currently working with a server that kills connection upon reading the header, and content will not get served, or only a partial bit of the content gets served, I have tried with several other agents, all are able to download the full content served by the server. I created a modified version without the 'connection: close' header and that solved the problem for me. I do not always have problems with that header, but I would like the ability to define my own headers, and since the connection: close header gets slapped inside an objects internal method, there is currently no other way I can bypass it. |
|||
| msg170475 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2012年09月14日 13:26 | |
This is a duplicate of issue 12849. I'm not sure that we support keep-alive using urllib. We do using httplib, if I understand correctly. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:36 | admin | set | github: 60147 |
| 2012年09月14日 13:26:21 | r.david.murray | set | status: open -> closed superseder: Cannot override 'connection: close' in urllib2 headers nosy: + r.david.murray messages: + msg170475 resolution: duplicate stage: resolved |
| 2012年09月14日 10:47:08 | sanxiago | create | |