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 shubhojeet.ghosh
Recipients orsenthil, shubhojeet.ghosh
Date 2011-08-28.19:19:27
SpamBayes Score 0.0002667013
Marked as misclassified No
Message-id <1314559168.55.0.630424901631.issue12849@psf.upfronthosting.co.za>
In-reply-to
Content
There seems to be an issue with urllib2
The headers defined does not match with the physical data packet (from wireshark). Other header parameters such as User Agent, cookie works fine.
Here is an example of a failure:

Python Code:
import urllib2

url = "http://www.python.org"

req = urllib2.Request(url)
req.add_header('Connection',"keep-alive")
u = urllib2.urlopen(req)


Wireshark:
GET / HTTP/1.1

Accept-Encoding: identity

Connection: close

Host: www.python.org

User-Agent: Python-urllib/2.6
History
Date User Action Args
2011-08-28 19:19:28shubhojeet.ghoshsetrecipients: + shubhojeet.ghosh, orsenthil
2011-08-28 19:19:28shubhojeet.ghoshsetmessageid: <1314559168.55.0.630424901631.issue12849@psf.upfronthosting.co.za>
2011-08-28 19:19:27shubhojeet.ghoshlinkissue12849 messages
2011-08-28 19:19:27shubhojeet.ghoshcreate