commit | 1e440cf5a267ce1787aa048525d45eb56fc06135 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Aug 22 00:39:46 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Aug 22 00:39:46 2013 +0200 |
tree | 4ffa3bf47f07f129bf502d6c1cc081190f642abe | |
parent | 9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85 [diff] [blame] |
Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions.
diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py index bfd2a5c..dcf201b 100644 --- a/Lib/test/test_timeout.py +++ b/Lib/test/test_timeout.py
@@ -110,7 +110,7 @@ # solution. fuzz = 2.0 - localhost = '127.0.0.1' + localhost = support.HOST def setUp(self): raise NotImplementedError()