(self)
| 5468 | pass |
| 5469 | |
| 5470 | def testInheritFlagsBlocking(self): |
| 5471 | # bpo-7995: accept() on a listening socket with a timeout and the |
| 5472 | # default timeout is None, the resulting socket must be blocking. |
| 5473 | with socket_setdefaulttimeout(None): |
| 5474 | self.serv.settimeout(10) |
| 5475 | conn, addr = self.serv.accept() |
| 5476 | self.addCleanup(conn.close) |
| 5477 | self.assertIsNone(conn.gettimeout()) |
| 5478 | |
| 5479 | def _testInheritFlagsBlocking(self): |
| 5480 | self.cli.connect((HOST, self.port)) |
nothing calls this directly
no test coverage detected