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.

Author christian.heimes
Recipients christian.heimes, seahoh
Date 2020-07-01.06:12:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593583953.73.0.683658177645.issue41169@roundup.psfhosted.org>
In-reply-to
Content
In your example you are binding to [::1]. That's suppose to work. Binding or connecting to [::] does not work for me on Linux:


>>> addr = '[::]', 8888
>>> s = socket.socket(socket.AF_INET6)
>>> s.bind(addr)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
socket.gaierror: [Errno -2] Name or service not known
>>> s.connect(addr)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
socket.gaierror: [Errno -2] Name or service not known
History
Date User Action Args
2020-07-01 06:12:33christian.heimessetrecipients: + christian.heimes, seahoh
2020-07-01 06:12:33christian.heimessetmessageid: <1593583953.73.0.683658177645.issue41169@roundup.psfhosted.org>
2020-07-01 06:12:33christian.heimeslinkissue41169 messages
2020-07-01 06:12:33christian.heimescreate