[Python-checkins] Python Regression Test Failures opt (1)

Brett Cannon brett at python.org
Sat Oct 6 21:08:19 CEST 2007


On 10/6/07, Neal Norwitz <nnorwitz at gmail.com> wrote:

> test_telnetlib
> test test_telnetlib failed -- Traceback (most recent call last):
>   File "/tmp/python-test/local/lib/python2.6/test/test_telnetlib.py", line 41, in testTimeoutDefault
>     telnet = telnetlib.Telnet("localhost", 9091)
>   File "/tmp/python-test/local/lib/python2.6/telnetlib.py", line 209, in __init__
>     self.open(host, port, timeout)
>   File "/tmp/python-test/local/lib/python2.6/telnetlib.py", line 227, in open
>     self.sock = socket.create_connection((host, port), self.timeout)
>   File "/tmp/python-test/local/lib/python2.6/socket.py", line 462, in create_connection
>     raise error, msg
> error: [Errno 111] Connection refused

Connection refusals keep happening.  Should we add refused connections
to the list of exceptions that test.test._support.transient_internet()
covers and use it on this test?

-Brett


More information about the Python-checkins mailing list