(self)
| 555 | pop.close() |
| 556 | |
| 557 | def testTimeoutValue(self): |
| 558 | pop = poplib.POP3(HOST, self.port, timeout=test_support.LOOPBACK_TIMEOUT) |
| 559 | self.assertEqual(pop.sock.gettimeout(), test_support.LOOPBACK_TIMEOUT) |
| 560 | pop.close() |
| 561 | with self.assertRaises(ValueError): |
| 562 | poplib.POP3(HOST, self.port, timeout=0) |
| 563 | |
| 564 | |
| 565 | def setUpModule(): |
nothing calls this directly
no test coverage detected