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: getaddrinfo no longer used in httplib
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, jjlee
Priority: normal Keywords: patch

Created on 2007-07-12 00:26 by jjlee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
getaddrinfo.patch jjlee, 2007-07-12 00:26
Messages (2)
msg52862 - (view) Author: John J Lee (jjlee) Date: 2007-07-12 00:26
The docs for module socket refer to the source of httplib as an example of the proper usage of socket.getaddrinfo().  httplib no longer uses that function directly, since that code moved into module socket.  This patch updates the reference to point to module socket instead of to httplib.

Not a backport candidate.
msg55214 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-08-23 21:18
Fixed in rev. 57351.
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45183
2007-08-23 21:18:55georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg55214
nosy: + georg.brandl
2007-07-12 00:26:32jjleecreate