[issue12849] urllib2 headers issue

2012-09-14 Thread R. David Murray

R. David Murray added the comment:

I've closed issue 15943 as a duplicate of this one.  As I said there, I'm not 
sure that we (can?) support keep-alive in urllib, though we do in httplib 
(which is the http package in python3).

--
nosy: +r.david.murray, sanxiago
versions: +Python 2.7, Python 3.2, Python 3.3 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12849
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12849] urllib2 headers issue

2011-08-28 Thread Shubhojeet Ghosh

New submission from Shubhojeet Ghosh shubhojeet.gh...@yahoo.com:

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

--
components: IO
messages: 143120
nosy: orsenthil, shubhojeet.ghosh
priority: normal
severity: normal
status: open
title: urllib2 headers issue
type: behavior
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12849
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com