Message3950
ATM you can't open IPv6 sockets since Lib/socket.py contains the
following assert:
518 def _realsocket(family = AF_INET, type = SOCK_STREAM, flags=0):
519 assert family == AF_INET
on IRC pjenvey said "likely it should be but there may be other changes
needed before AF_INET6 works" and "log a ticket for that one"
Not sure if this wanted (since IPv6 may just be not supported yet as
pjenvey said) or is just a typo, anyway getaddrinfo uses a different assert:
527 def getaddrinfo(host, port, family=AF_INET, socktype=None, proto=0,
flags=None):
528 try:
529 if not family in [AF_INET, AF_INET6, AF_UNSPEC]: |
|
Date |
User |
Action |
Args |
2008-12-17 15:17:49 | mcella | set | recipients:
+ mcella |
2008-12-17 15:17:49 | mcella | set | messageid: <1229527069.23.0.20556392013.issue1210@psf.upfronthosting.co.za> |
2008-12-17 15:17:49 | mcella | link | issue1210 messages |
2008-12-17 15:17:48 | mcella | create | |
|