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 Anthony Sottile
Recipients Anthony Sottile, cecton, pitrou, yselivanov
Date 2018-02-09.23:53:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518220418.12.0.467229070634.issue30945@psf.upfronthosting.co.za>
In-reply-to
Content
Applying this patch makes the tests pass for me, but I don't think the patch is appropriate (just hides the bug):

```
$ git diff
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py
index 5bd76d3..ff6c4e1 100644
--- a/Lib/test/test_asyncio/test_unix_events.py
+++ b/Lib/test/test_asyncio/test_unix_events.py
@@ -480,7 +480,7 @@ class SelectorEventLoopUnixSockSendfileTests(test_utils.TestCase):
         proto = self.MyProto(self.loop)
         port = support.find_unused_port()
         server = self.run_loop(self.loop.create_server(
-            lambda: proto, support.HOST, port))
+            lambda: proto, support.HOSTv4, port))
         self.run_loop(self.loop.sock_connect(sock, (support.HOST, port)))
 
         def cleanup():
```
History
Date User Action Args
2018-02-09 23:53:38Anthony Sottilesetrecipients: + Anthony Sottile, pitrou, yselivanov, cecton
2018-02-09 23:53:38Anthony Sottilesetmessageid: <1518220418.12.0.467229070634.issue30945@psf.upfronthosting.co.za>
2018-02-09 23:53:38Anthony Sottilelinkissue30945 messages
2018-02-09 23:53:38Anthony Sottilecreate