[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2010-11-13 Thread Senthil Kumaran
Senthil Kumaran added the comment: r86461 (release31-maint) r86462 (release27-maint) -- status: open -> closed ___ Python tracker ___

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2010-11-13 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r86450 (py3k). Will be back porting shortly. -- resolution: -> fixed stage: -> committed/rejected ___ Python tracker ___ ___

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2010-10-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2010-10-18 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2010-10-18 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread chkneo
chkneo added the comment: Attaching the test patch -- Added file: http://bugs.python.org/file14430/5311_test.diff ___ Python tracker ___ _

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the patch. It would be better if you also added a test to Lib/test/test_httplib.py (unless for some reason it's technically impossible to do so). -- nosy: +pitrou versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 -Python 2.5

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread chkneo
Changes by chkneo : Added file: http://bugs.python.org/file14425/5111.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread chkneo
Changes by chkneo : Removed file: http://bugs.python.org/file14424/5111.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread chkneo
chkneo added the comment: RFC 2732 Section three have the following details. host = hostname | IPv4address | IPv6reference ipv6reference = "[" IPv6address "]" The patch contains check for : and adding the brackets -- ___ Python

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-07-02 Thread chkneo
chkneo added the comment: As per the RFC 2732 host header should be wrapped with []. I am attaching patch for this too which is applied on trunk(2.7) -- keywords: +patch nosy: +chkneo type: -> behavior Added file: http://bugs.python.org/file14424/5111.diff

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-03-31 Thread Derek Morr
Changes by Derek Morr : -- nosy: +dmorr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/m

[issue5111] httplib: wrong Host header when connecting to IPv6 litteral URL

2009-01-30 Thread Guillaume Desmottes
Guillaume Desmottes added the comment: Actually, this bug is present when you try to connect to any URL containing an IP6 and a port. So, we have the same problem when using, for example: http = httplib.HTTPConnection('[2a01:8790:16d:0:218:de87:164:8745]:') but http = httplib.HTTPConnectio