From: Georg Brandl Date: Tue, 28 Oct 2014 21:45:27 +0000 (+0100) Subject: Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for getaddrinfo... X-Git-Tag: v3.4.3rc1~425 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b07b0e8683b248b82d09bf1f0dbd3bd09e7af72;p=thirdparty%2FPython%2Fcpython.git Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for getaddrinfo() proto param --- diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 9b21c8b87356..86ae48488faa 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -464,7 +464,7 @@ The :mod:`socket` module also offers various network-related services: connection to ``www.python.org`` on port 80 (results may differ on your system if IPv6 isn't enabled):: - >>> socket.getaddrinfo("www.python.org", 80, proto=socket.SOL_TCP) + >>> socket.getaddrinfo("www.python.org", 80, proto=socket.IPPROTO_TCP) [(2, 1, 6, '', ('82.94.164.162', 80)), (10, 1, 6, '', ('2001:888:2000:d::a2', 80, 0, 0))]