[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Bill Janssen
Changes by Bill Janssen: -- resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Derek Morr
Derek Morr added the comment: My apologies. This should have been filed against Python 2.3. I see it was fixed with checkin 54546. Go ahead and close this bug. __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Bill Janssen
Changes by Bill Janssen: -- assignee: janssen -> __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Bill Janssen
Bill Janssen added the comment: Considering that HTTPSConnection uses the exact same code as HTTPConnection to interpret the specified address, I think we need more diagnosis in order to determine whether this is a real issue or not. If it is, what's going wrong? ___

[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: -> janssen nosy: +janssen priority: -> normal versions: +Python 2.6 -Python 2.5 __ Tracker <[EMAIL PROTECTED]> __ __

[issue1654] HTTPSConnection is not IPv6-capable

2007-12-18 Thread Derek Morr
New submission from Derek Morr: httplib.HTTPSConnection is not IPv6-capable, even though httplib.HTTPConnection is. HTTPSConnection has its own connect() method which does not call socket.getaddrinfo(). -- components: Library (Lib) messages: 58769 nosy: dmorr severity: normal status: ope