(self)
| 5365 | pass |
| 5366 | |
| 5367 | def testInheritFlagsBlocking(self): |
| 5368 | # bpo-7995: accept() on a listening socket with a timeout and the |
| 5369 | # default timeout is None, the resulting socket must be blocking. |
| 5370 | with socket_setdefaulttimeout(None): |
| 5371 | self.serv.settimeout(10) |
| 5372 | conn, addr = self.serv.accept() |
| 5373 | self.addCleanup(conn.close) |
| 5374 | self.assertIsNone(conn.gettimeout()) |
| 5375 | |
| 5376 | def _testInheritFlagsBlocking(self): |
| 5377 | self.cli.connect((HOST, self.port)) |
nothing calls this directly
no test coverage detected