(self)
| 7220 | self.assertTrue(opt) |
| 7221 | |
| 7222 | def test_set_quickack(self): |
| 7223 | sock = socket.socket(family=socket.AF_INET, type=socket.SOCK_STREAM, |
| 7224 | proto=socket.IPPROTO_TCP) |
| 7225 | with sock: |
| 7226 | self.check_set_quickack(sock) |
| 7227 | |
| 7228 | |
| 7229 | @unittest.skipUnless(sys.platform.startswith("win"), "requires Windows") |
nothing calls this directly
no test coverage detected