Ned Deily added the comment:

There are places in the test suite that assume 127.0.0.1 is the standard 
loopback address and will fail if the system under test doesn't follow that 
convention; see, for example, the discussion in Issue22753.  I suspect that, in 
your case, the system's host configuration (/etc/hosts, DNS configuration, or 
similar) is such that the loopback address (127.0.0.1) is "round-tripped" as 
the actual address (192.168.1.103) of the interface.  What platform are you 
running this on?  Can you check what the addresses association with "localhost" 
and the names associated with the two IP addresses?  For example, on many 
POSIX-y platforms, the following might work:

dig localhost
dig -x 127.0.0.1
dig -x 192.168.1.103
ifconfig

----------
nosy: +ned.deily

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24156>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to