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 giampaolo.rodola
Recipients giampaolo.rodola, gvanrossum, neologix, pitrou
Date 2013-03-27.19:50:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364413810.77.0.360910455707.issue17561@psf.upfronthosting.co.za>
In-reply-to
Content
What you say is right but whether the kernel supports an hybrid IPv4/6 stack or not there's not much we can do about it anyway.
Exactly what are you suggesting with the ServerSocket class you mentioned? What do you expect it to do?
Note that platforms supporting the dual-stack are already supported. This:

>>> socket.create_server_socket(("::", 0))

...on Linux will create a socket which is reachable both as "::1" and "127.0.0.1".
So if I'm not mistaken the alias for specifying "listen on all interfaces for both IPv4 and IPv6 addresses" would be "::" instead of "" / None.
We can document that.
History
Date User Action Args
2013-03-27 19:50:10giampaolo.rodolasetrecipients: + giampaolo.rodola, gvanrossum, pitrou, neologix
2013-03-27 19:50:10giampaolo.rodolasetmessageid: <1364413810.77.0.360910455707.issue17561@psf.upfronthosting.co.za>
2013-03-27 19:50:10giampaolo.rodolalinkissue17561 messages
2013-03-27 19:50:10giampaolo.rodolacreate