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 hakan
Recipients hakan
Date 2014-10-28.14:47:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414507628.78.0.884878705537.issue22753@psf.upfronthosting.co.za>
In-reply-to
Content
Running this test gave me an error: 
./python -m test -v test_urllib2_localnet

======================================================================
ERROR: test_proxy_qop_auth_works (test.test_urllib2_localnet.ProxyAuthTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/hakan/kod/cpython/cpython/Lib/urllib/request.py", line 1182, in do_open
    h.request(req.get_method(), req.selector, req.data, headers)
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 1154, in request
    self._send_request(method, url, body, headers)
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 1192, in _send_request
    self.endheaders(body)
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 1150, in endheaders
    self._send_output(message_body)
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 988, in _send_output
    self.send(msg)
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 923, in send
    self.connect()
  File "/home/hakan/kod/cpython/cpython/Lib/http/client.py", line 900, in connect
    self.timeout, self.source_address)
  File "/home/hakan/kod/cpython/cpython/Lib/socket.py", line 710, in create_connection
    raise err
  File "/home/hakan/kod/cpython/cpython/Lib/socket.py", line 701, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

Changing "localhost" to "127.0.0.1" made the test pass. My friend puppet made a patch for it so it looks up the IP-address.
History
Date User Action Args
2014-10-28 14:47:08hakansetrecipients: + hakan
2014-10-28 14:47:08hakansetmessageid: <1414507628.78.0.884878705537.issue22753@psf.upfronthosting.co.za>
2014-10-28 14:47:08hakanlinkissue22753 messages
2014-10-28 14:47:08hakancreate