(self)
| 7310 | self.assertTrue(opt) |
| 7311 | |
| 7312 | def test_set_quickack(self): |
| 7313 | sock = socket.socket(family=socket.AF_INET, type=socket.SOCK_STREAM, |
| 7314 | proto=socket.IPPROTO_TCP) |
| 7315 | with sock: |
| 7316 | self.check_set_quickack(sock) |
| 7317 | |
| 7318 | |
| 7319 | @unittest.skipUnless(sys.platform.startswith("win"), "requires Windows") |
nothing calls this directly
no test coverage detected