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.

classification
Title: HTTPSConnection is not IPv6-capable
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: dmorr, janssen
Priority: normal Keywords:

Created on 2007-12-18 20:52 by dmorr, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg58769 - (view) Author: Derek Morr (dmorr) Date: 2007-12-18 20:52
httplib.HTTPSConnection is not IPv6-capable, even though
httplib.HTTPConnection is. HTTPSConnection has its own connect() method
which does not call socket.getaddrinfo().
msg58778 - (view) Author: Bill Janssen (janssen) * (Python committer) Date: 2007-12-18 22:06
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?
msg58783 - (view) Author: Derek Morr (dmorr) Date: 2007-12-18 22:37
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.
History
Date User Action Args
2022-04-11 14:56:29adminsetgithub: 45995
2007-12-19 03:50:27janssensetstatus: open -> closed
resolution: not a bug
2007-12-18 22:37:13dmorrsetmessages: + msg58783
2007-12-18 22:08:32janssensetassignee: janssen ->
2007-12-18 22:06:52janssensetmessages: + msg58778
2007-12-18 21:48:49christian.heimessetpriority: normal
assignee: janssen
nosy: + janssen
versions: + Python 2.6, - Python 2.5
2007-12-18 20:52:12dmorrcreate