Merge 3.4 (Issue #23630, fix test_asyncio)

This commit is contained in:
Victor Stinner 2015-09-21 22:29:30 +02:00
commit e355604447
1 changed files with 1 additions and 0 deletions

View File

@ -764,6 +764,7 @@ class EventLoopTestsMixin:
for host in hosts]
self.loop.getaddrinfo = getaddrinfo_task
self.loop._start_serving = mock.Mock()
self.loop._stop_serving = mock.Mock()
f = self.loop.create_server(lambda: MyProto(self.loop), hosts, 80)
server = self.loop.run_until_complete(f)
self.addCleanup(server.close)