diff options
author | Georg Brandl <georg@python.org> | 2007-08-23 21:18:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-23 21:18:44 (GMT) |
commit | 4ad9b8206c654a5b9874917fa5165453c81ed0e4 (patch) | |
tree | 7684323a56f361eca4b0e600d92351ddef103916 /Doc/library | |
parent | a3a68a0db4c375cc7bc7e729a857641a2fdbab6e (diff) | |
download | cpython-4ad9b8206c654a5b9874917fa5165453c81ed0e4.zip cpython-4ad9b8206c654a5b9874917fa5165453c81ed0e4.tar.gz cpython-4ad9b8206c654a5b9874917fa5165453c81ed0e4.tar.bz2 |
Bug #1752332: httplib no longer uses socket.getaddrinfo().
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/socket.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 3253d7c..9acd7d2 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -197,7 +197,7 @@ The module :mod:`socket` exports the following constants and functions: :func:`socket` function. *canonname* is a string representing the canonical name of the *host*. It can be a numeric IPv4/v6 address when :const:`AI_CANONNAME` is specified for a numeric *host*. *sockaddr* is a tuple describing a socket - address, as described above. See the source for the :mod:`httplib` and other + address, as described above. See the source for :mod:`socket` and other library modules for a typical usage of the function. .. versionadded:: 2.2 |