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 seahoh
Recipients christian.heimes, seahoh
Date 2020-07-01.12:18:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593605905.92.0.769280512095.issue41169@roundup.psfhosted.org>
In-reply-to
Content
[::] can be bound, but the resoult is [::1], you must use this address to connect. Excuse me, are you a developer of the Python?

>>> import socket
>>> ls = socket.socket(socket.AF_INET6)
>>> cs = socket.socket(socket.AF_INET6)
>>> ls.bind(('[::]', 888))  # no raise
>>> ls.listen(1)
>>> cs.connect(('[::1]', 888))  # no raise
History
Date User Action Args
2020-07-01 12:18:25seahohsetrecipients: + seahoh, christian.heimes
2020-07-01 12:18:25seahohsetmessageid: <1593605905.92.0.769280512095.issue41169@roundup.psfhosted.org>
2020-07-01 12:18:25seahohlinkissue41169 messages
2020-07-01 12:18:25seahohcreate