Roundup Robot added the comment:
New changeset 5611c7c20460 by Georg Brandl in branch '3.4':
Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for
getaddrinfo() proto param
https://hg.python.org/cpython/rev/5611c7c20460
--
nosy: +python-dev
resolution: -> fixed
stage:
Roundup Robot added the comment:
New changeset 999e72ed3fbc by Georg Brandl in branch '2.7':
Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for
getaddrinfo() proto param
https://hg.python.org/cpython/rev/999e72ed3fbc
--
___
Pytho
New submission from Alexander Patrakov:
See the example at
https://docs.python.org/2/library/socket.html#socket.getaddrinfo
>>> socket.getaddrinfo("www.python.org", 80, 0, 0, socket.SOL_TCP)
As I am primarily a C programmer, it is quite surprising for me to see a SOL_*
being passed into the p