MCPcopy Index your code
hub / github.com/python/cpython / setUp

Method setUp

Lib/test/test_epoll.py:44–46  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

42class TestEPoll(unittest.TestCase):
43
44 def setUp(self):
45 self.serverSocket = socket.create_server(('127.0.0.1', 0))
46 self.connections = [self.serverSocket]
47
48 def tearDown(self):
49 for skt in self.connections:

Callers

nothing calls this directly

Calls 1

create_serverMethod · 0.45

Tested by

no test coverage detected