[issue14855] IPv6 support for logging.handlers

Martin v. Löwis report at bugs.python.org
Sat May 19 17:47:45 CEST 2012


Martin v. Löwis <martin at v.loewis.de> added the comment:

> On my computer, connect() on a UDP socket always finishes  
> successfully. What's wrong?

Nothing is wrong. UDP is connection-less, so connect() is a no-op,
except that it remembers the address so you can use send() instead
of sendto(). Any errors due to non-reachability will only happen when
you actually try to send.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14855>
_______________________________________


More information about the Python-bugs-list mailing list